features/test/php/scenarios.json
Samruddhi Khandale 36d7664eba
PHP: Allow 'version:none' (#439)
* PHP: Allow 'version:none'

* fix tests
2023-02-07 09:52:33 -08:00

37 lines
800 B
JSON

{
"install_additional_php": {
"image": "ubuntu:focal",
"features": {
"php": {
"version": "8.1.4",
"additionalVersions": "8.0.17,8.0.3"
}
}
},
"install_php_8": {
"image": "ubuntu:focal",
"features": {
"php": {
"version": "8"
}
}
},
"install_php_8_2": {
"image": "ubuntu:focal",
"features": {
"php": {
"version": "8.2"
}
}
},
"install_only_composer": {
"image": "mcr.microsoft.com/devcontainers/php:latest",
"features": {
"php": {
"version": "none",
"installComposer": true
}
}
}
}