remove bin/dev/setup-phpunit.sh

This commit is contained in:
Art4 2024-11-06 22:02:44 +00:00
parent 50cf3bf4f7
commit d959c07e25

View file

@ -1,13 +0,0 @@
#!/bin/bash
PHPUNIT="$(git rev-parse --show-toplevel)/bin/phpunit"
if ! [ -x "$PHPUNIT" ]; then
echo "Install PHPUnit 8"
cd /tmp/
curl -s -O -L https://phar.phpunit.de/phpunit-8.phar
chmod +x phpunit-8.phar
mv phpunit-8.phar $PHPUNIT
fi
echo "Using $PHPUNIT $($PHPUNIT --version)"