Skip to content

Commit 0f1004b

Browse files
committed
Add PHP 8.5 support to documentation and validation schemas
1 parent 1db4349 commit 0f1004b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ Send a test HTTP request to the webserver backend service:
165165

166166
a vhost can be created by the api-cli command
167167

168-
We use a container with nginx and another container for the php-fpm configuration (actually availlable PHP 7.4,8.0,8.1,8.2,8.3,8.4)
168+
We use a container with nginx and another container for the php-fpm configuration (actually availlable PHP 7.4,8.0,8.1,8.2,8.3,8.4,8.5)
169169

170170
Launch `create-vhost`, by setting the following parameters:
171-
- `PhpVersion`: Set the version of php needed, can be `''(no php), 7.4,8.0,8.1,8.2,8.3,8.4`
171+
- `PhpVersion`: Set the version of php needed, can be `''(no php), 7.4,8.0,8.1,8.2,8.3,8.4,8.5`
172172
- `ServerNames`: set the domain name of the vhost, it must be an array
173173
- `MemoryLimit`: This sets the maximum amount of memory that a script is allowed to allocate. use `MB`
174174
- `AllowUrlfOpen` : This option enables the URL-aware fopen wrappers that enable accessing URL object like files. use `enabled|disabled`
@@ -225,7 +225,7 @@ The TCP port of the php-fpm port is unique, each virtualhost gets a nex tcp port
225225

226226
Launch `update-vhost`, by setting the following parameters:
227227
- `port`: The tcp port of php-fpm, it is used as an ID for the virtualhost
228-
- `PhpVersion`: Set the version of php needed, can be `''(no php), 7.4,8.0,8.1,8.2,8.3,8.4`
228+
- `PhpVersion`: Set the version of php needed, can be `''(no php), 7.4,8.0,8.1,8.2,8.3,8.4,8.5`
229229
- `ServerNames`: set the domain name of the vhost, it must be an array
230230
- `MemoryLimit`: This sets the maximum amount of memory that a script is allowed to allocate. use `MB`
231231
- `AllowUrlfOpen` : This option enables the URL-aware fopen wrappers that enable accessing URL object like files. use `enabled|disabled`

imageroot/actions/create-vhost/validate-input.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"format": "regex",
5454
"pattern":"(^[0-9][.][0-9]$|^$)",
5555
"title": "PhpVersion",
56-
"description": "Could be 7.4 or 8.0 or 8.1 or 8.2 or 8.3 or 8.4 or ''"
56+
"description": "Could be 7.4 or 8.0 or 8.1 or 8.2 or 8.3 or 8.4 or 8.5 or ''"
5757
},
5858
"MemoryLimit": {
5959
"type": "integer",

imageroot/actions/get-configuration/validate-output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"format": "regex",
103103
"pattern": "(^[0-9][.][0-9]$|^$)",
104104
"title": "PhpVersion",
105-
"description": "Could be 7.4 or 8.0 or 8.1 or 8.2 or 8.3 or 8.4 or ''"
105+
"description": "Could be 7.4 or 8.0 or 8.1 or 8.2 or 8.3 or 8.4 or 8.5 or ''"
106106
},
107107
"MemoryLimit": {
108108
"type": "integer",

imageroot/actions/update-vhost/validate-input.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"format": "regex",
5656
"pattern": "(^[0-9][.][0-9]$|^$)",
5757
"title": "PhpVersion",
58-
"description": "Could be 7.4 or 8.0 or 8.1 or 8.2 or 8.3 or 8.4 or ''"
58+
"description": "Could be 7.4 or 8.0 or 8.1 or 8.2 or 8.3 or 8.4 or 8.5 or ''"
5959
},
6060
"MemoryLimit": {
6161
"type": "integer",

0 commit comments

Comments
 (0)