Skip to content

Commit 49570ca

Browse files
authored
Add new runtimes to README (#59)
* Add Python 3.9 to README * Add .NET 6 * Add dotnet 6 runtime const
1 parent edbecb4 commit 49570ca

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ You can write functions in any of the following runtimes and execute them straig
2121
- Node.js 14
2222
- Node.js 12
2323
- Node.js 10
24+
- Python 3.9
2425
- Python 3.8
2526
- Python 3.7
2627
- Python 3.6
@@ -30,6 +31,7 @@ You can write functions in any of the following runtimes and execute them straig
3031
- Java 11
3132
- Java 8
3233
- Go 1.x
34+
- .NET 6
3335
- .NET Core 3.1
3436
- .NET Core 2.1
3537

@@ -143,4 +145,4 @@ Sidecar does _not_ handle any API Gateway, Databases, Caches, etc. The _only_ th
143145

144146
Sidecar does not provide a way to execute a function via HTTP. You must execute it from your Laravel app through the provided methods.
145147

146-
If you need those other services, you are encouraged to use the instances that Vapor has set up for you, or set them up yourself.
148+
If you need those other services, you are encouraged to use the instances that Vapor has set up for you, or set them up yourself.

src/Runtime.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ abstract class Runtime
1818
public const JAVA_8_LINUX2 = 'java8.al2';
1919
public const JAVA_8 = 'java8';
2020
public const GO_1X = 'go1.x';
21+
public const DOT_NET_6 = 'dotnet6';
2122
public const DOT_NET_31 = 'dotnetcore3.1';
2223
public const DOT_NET_21 = 'dotnetcore2.1';
2324
public const PROVIDED_AL2 = 'provided.al2';

0 commit comments

Comments
 (0)