fix(devcontainer): try adjusting scripts/setup for xdebug VSCode extension

This commit is contained in:
rugk
2026-02-16 22:59:05 +00:00
parent ed652fd92d
commit dd69cb89af
2 changed files with 6 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ export PATH="$PATH:$PWD/vendor/bin"
echo 'export PATH="$PATH:$HOME/.composer/vendor/bin"' >> ~/.bashrc
echo 'export PATH="$PATH:$PWD/vendor/bin"' >> ~/.bashrc
ln -s ./conf.sample.php cfg/conf.php
composer install --no-dev --optimize-autoloader
composer install --optimize-autoloader
# for PHP unit testing
composer require --global google/cloud-storage

View File

@@ -1,5 +1,9 @@
{
"files.associations": {
"**/cfg/conf*.php": "ini"
}
},
"phpunit.phpunit": "${workspaceFolder}/vendor/bin/phpunit",
"phpunit.args": [
"--configuration '${workspaceFolder}/tst/phpunit.xml'"
]
}