blob: 1e4df063d36db9cd573147713a6ccb7a6df0800c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
"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
}
}
}
}
|