File tree 4 files changed +18
-2
lines changed
core/controller/src/main/resources
4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 175
175
"attachmentName" : " codefile" ,
176
176
"attachmentType" : " text/plain"
177
177
}
178
+ },
179
+ {
180
+ "kind" : " php:8.0" ,
181
+ "default" : false ,
182
+ "deprecated" : false ,
183
+ "image" : {
184
+ "prefix" : " openwhisk" ,
185
+ "name" : " action-php-v8.0" ,
186
+ "tag" : " nightly"
187
+ },
188
+ "attached" : {
189
+ "attachmentName" : " codefile" ,
190
+ "attachmentType" : " text/plain"
191
+ }
178
192
}
179
193
],
180
194
"ruby" : [
Original file line number Diff line number Diff line change 2002
2002
" nodejs:default" ,
2003
2003
" php:7.3" ,
2004
2004
" php:7.4" ,
2005
+ " php:8.0" ,
2005
2006
" php:default" ,
2006
2007
" python:3" ,
2007
2008
" python:default" ,
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Here are some of the more common runtime images...
65
65
- ` openwhisk/python3action ` - [ Python 3] ( https://hub.docker.com/r/openwhisk/python3action ) ([ Source] ( https://github.com/apache/openwhisk-runtime-python/blob/master/core/pythonAction/Dockerfile ) )
66
66
- ` openwhisk/java8action ` - [ Java 8] ( https://hub.docker.com/r/openwhisk/java8action ) ([ Source] ( https://github.com/apache/openwhisk-runtime-java/blob/master/core/java8/Dockerfile ) )
67
67
- ` openwhisk/action-swift-v4.2 ` - [ Swift 4.2] ( https://hub.docker.com/r/openwhisk/action-swift-v4.2 ) ([ Source] ( https://github.com/apache/openwhisk-runtime-swift/blob/master/core/swift42Action/Dockerfile ) )
68
- - ` openwhisk/action-php-v7.3 ` - [ PHP 7.3 ] ( https://hub.docker.com/r/openwhisk/action-php-v7.3 ) ([ Source] ( https://github.com/apache/openwhisk-runtime-php/blob/master/core/php7.3Action /Dockerfile ) )
68
+ - ` openwhisk/action-php-v7.4 ` - [ PHP 7.4 ] ( https://hub.docker.com/r/openwhisk/action-php-v7.4 ) ([ Source] ( https://github.com/apache/openwhisk-runtime-php/blob/master/core/php7.4Action /Dockerfile ) )
69
69
- ` openwhisk/action-ruby-v2.5 ` - [ Ruby 2.5] ( https://hub.docker.com/r/openwhisk/action-ruby-v2.5 ) ([ Source] ( https://github.com/apache/openwhisk-runtime-ruby/blob/master/core/ruby2.5Action/Dockerfile ) )
70
70
71
71
## Extending Existing Runtimes
Original file line number Diff line number Diff line change @@ -23,12 +23,13 @@ The process of creating PHP actions is similar to that of [other actions](action
23
23
The following sections guide you through creating and invoking a single PHP action,
24
24
and demonstrate how to bundle multiple PHP files and third party dependencies.
25
25
26
- PHP actions are executed using PHP 7.4 or 7.3. The specific
26
+ PHP actions are executed using PHP 8.0, 7.4 or 7.3. The specific
27
27
version of PHP is listed in the CHANGELOG files in the [ PHP runtime repository] ( https://github.com/apache/openwhisk-runtime-php ) .
28
28
29
29
To use a PHP runtime, specify the ` wsk ` CLI parameter ` --kind ` when creating or
30
30
updating an action. The available PHP kinds are:
31
31
32
+ * PHP 8.0: ` --kind php:8.0 `
32
33
* PHP 7.4: ` --kind php:7.4 `
33
34
* PHP 7.3: ` --kind php:7.3 `
34
35
You can’t perform that action at this time.
0 commit comments