forked from rradczewski/kata-bootstraps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
35 lines (35 loc) · 998 Bytes
/
.devcontainer.json
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
{
"name": "PHP",
"image": "mcr.microsoft.com/devcontainers/php:8.3",
"onCreateCommand": "composer install",
"customizations": {
"github.com/rradczewski/kata-bootstraps": {
"failingTestVerification": "composer test | tee /dev/stderr | grep -q 'Tests: 2, Assertions: 2, Failures: 1.'",
"testCommand": "composer test",
"languageLogo": "./php-plain.svg",
"resources": [
{
"name": "PHP Getting Started",
"url": "https://www.php.net/manual/en/getting-started.php"
},
{
"name": "PHP Language Reference",
"url": "https://www.php.net/manual/en/langref.php"
},
{
"name": "PHP Language Reference",
"url": "https://www.php.net/manual/en/langref.php"
},
{
"name": "Packagist (Registry)",
"url": "https://packagist.org/"
}
]
},
"vscode": {
"extensions": [
"MS-vsliveshare.vsliveshare"
]
}
}
}