Last active
June 1, 2020 09:58
-
-
Save clagiordano/25e832cce42cbd5dedacbdc2dc6ff8b2 to your computer and use it in GitHub Desktop.
composer scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"test": "./vendor/bin/phpunit --no-coverage", | |
"coverage": "php -dzend_extension=xdebug.so ./vendor/bin/phpunit", | |
"debug": "php -dxdebug.remote_autostart=On -dzend_extension=xdebug.so", | |
"phpstan": "phpstan analyse -l 7 src/", | |
"phpmd": "phpmd src/ text phpmd.xml", | |
"lint": "./vendor/bin/phpcs --standard=phpcs.xml --extensions=php --ignore=autoload.php src", | |
"lint-fix": "./vendor/bin/phpcbf --standard=phpcs.xml --extensions=php --ignore=autoload.php src" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment