From 93c6d72107994a97eaa063d105248288b763f3c1 Mon Sep 17 00:00:00 2001 From: rugk Date: Mon, 23 Feb 2026 13:21:17 +0000 Subject: [PATCH] refactor: install PHPUnit globally for development instead of locally --- .devcontainer/postCreateCommand.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/postCreateCommand.sh b/.devcontainer/postCreateCommand.sh index 8aa07739..269ecca3 100755 --- a/.devcontainer/postCreateCommand.sh +++ b/.devcontainer/postCreateCommand.sh @@ -12,7 +12,8 @@ ln -s ./conf.sample.php cfg/conf.php composer install --no-dev --optimize-autoloader # for PHP unit testing -composer require --global google/cloud-storage +composer global require phpunit/phpunit +composer global require google/cloud-storage sudo chmod a+x "$(pwd)" && sudo rm -rf /var/www/html && sudo ln -s "$(pwd)" /var/www/html