Skip to content

Instantly share code, notes, and snippets.

@clagiordano
Last active June 1, 2020 09:58
Show Gist options
  • Save clagiordano/25e832cce42cbd5dedacbdc2dc6ff8b2 to your computer and use it in GitHub Desktop.
Save clagiordano/25e832cce42cbd5dedacbdc2dc6ff8b2 to your computer and use it in GitHub Desktop.
composer scripts
"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