This package includes several development tools configured via Composer scripts.
composer cs:check # Run code style check
composer cs:fix # Run code style fix
composer phpstan # Run static analysis (PHPStan)
composer tests:build # Build unit tests
composer tests:run # Run unit testsThe project uses PHPStan for static analysis.
phpstan.core.neon- primary config used by the command linephpstan.neon.dist- template config for editor integrationsphpstan.neon- optional local override (copied from.dist)
To run PHPStan:
composer phpstanTo run all tests:
composer tests:build
composer tests:run