Blame | Last modification | View Log | Download
Contributing============When contributing, you can fix some things that will be detected by CI anyway *before* sending your pull request.The following tools will be installed in the `tools` directory, so they don't share the bundle requirements.PHPStan-------```bashcomposer install --working-dir=tools/phpstantools/phpstan/vendor/bin/phpstan analyze# Based on the results, you may want to update the baselinetools/phpstan/vendor/bin/phpstan analyze --generate-baseline```PHP CS Fixer------------```bashcomposer install --working-dir=tools/php-cs-fixer# Check what can be fixedtools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff# Fix themtools/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff```Psalm-----```bashcomposer install --working-dir=tools/psalmtools/psalm/vendor/bin/psalm```PHPUnit-------```bash./vendor/bin/simple-phpunit```