diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-01-20 20:22:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 20:22:39 +0300 |
commit | 7a3a9c5fcaa59cf4d7dbbcece47094a6d642a9b0 (patch) | |
tree | 3b3c2c9f6ef6f9f2b3d75b1062783646e3ab8ce7 /src/php/devcontainer-feature.json | |
parent | 24b33c5f79a38684a4433fcb1310db256b264c00 (diff) |
Php: Auto configure if a three part version is not provided (#406)
* Php: Auto configure if a three part version is not provided
* fix test
* update checks
* Bump version
Diffstat (limited to 'src/php/devcontainer-feature.json')
-rw-r--r-- | src/php/devcontainer-feature.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/php/devcontainer-feature.json b/src/php/devcontainer-feature.json index 2ea56d2..201fe48 100644 --- a/src/php/devcontainer-feature.json +++ b/src/php/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "php", - "version": "1.0.11", + "version": "1.1.0", "name": "PHP", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/php", "options": { @@ -8,7 +8,9 @@ "type": "string", "proposals": [ "latest", - "8.0.16" + "8", + "8.2", + "8.2.0" ], "default": "latest", "description": "Select or enter a PHP version" |