We are using GitHub Actions as a continuous integration system.
For details, see workflows/continuous-integration.yml.
We format the code automatically with php-cs-fixer
make fix
Prefer explicit naming and short, focused functions over excessive comments.
We are using phpstan/phpstan to statically analyze the code.
Run
make stanto run a static code analysis.
We are using phpunit/phpunit to drive the development.
Run
make testto run all the tests.
Run
maketo enforce coding standards, perform a static code analysis, and run tests!
💡 Run
make helpto display a list of available targets with corresponding descriptions.