Containerized install of PHP_CodeSniffer
192
A simple docker container with just PHP_CodeSniffer for linting and fixing PHP code against defined coding standards.
docker run --rm mdouglas/php-cs phpcs --help
docker run --rm mdouglas/php-cs phpcbf --help
docker run --rm -v ${PWD}:/app -t mdouglas/php-cs phpcs --standard=PSR12 .
docker run --rm -v ${PWD}:/app -t mdouglas/php-cs phpcbf --standard=PSR12 .
Content type
Image
Digest
Size
37 MB
Last updated
about 5 years ago
docker pull mdouglas/php-cs