Slide 31
Slide 31 text
"scripts": {
"lint": "parallel-lint src tests",
"phpcs": "phpcs src tests --standard=psr12 -sp --colors",
"phpstan": [
"phpstan analyse src -c phpstan.neon --level max --no-progress",
"phpstan analyse tests -c phpstan.neon --level 4 --no-progress"
],
"phpunit": "phpunit --verbose --colors=always",
"phpunit-ci": "phpunit --coverage-clover build/logs/clover.xml",
"phpunit-coverage": "phpunit --coverage-html build/coverage",
"test": ["@lint", "@phpcs", "@phpstan", "@phpunit"],
"test-ci": ["@lint", "@phpcs", "@phpstan", "@phpunit-ci"]
}