feat(devcontainer): try provide --bootstrap arg and use global phpunit

This commit is contained in:
rugk
2026-02-23 13:40:10 +00:00
parent 4e437b4ac7
commit 422f149c52

View File

@@ -2,8 +2,11 @@
"files.associations": { "files.associations": {
"**/cfg/conf*.php": "ini" "**/cfg/conf*.php": "ini"
}, },
"phpunit.phpunit": "${workspaceFolder}/vendor/bin/phpunit", "phpunit.phpunit": "${userHome}/.composer/vendor/bin/phpunit",
"phpunit.args": [ "phpunit.args": [
"--configuration '${workspaceFolder}/tst/phpunit.xml'" "--configuration",
"${workspaceFolder}/tst/phpunit.xml",
"--bootstrap",
"${workspaceFolder}/tst/Bootstrap.php"
] ]
} }