tophfr/phpunit
Docker image for PHPUnit, The PHP Testing Framework
183
Cf. https://phpunit.readthedocs.io/
docker run --rm -it -v "$PWD:$PWD" -w "$PWD" -u "$(id -u):$(id -g)" tophfr/phpunit
or, if you need code coverage analysis:
docker run --rm -it -v "$PWD:$PWD" -w "$PWD" -u "$(id -u):$(id -g)" -e XDEBUG=On tophfr/phpunit
docker pull tophfr/phpunit