Contribution are always welcome and much appreciated!
Before starting to contribute, you first need to install dev dependencies:
composer install --dev
Also, in an effort to maintain an homogeneous code base, we strongly encourage contributors to run PHP-CS-Fixer and PHPStan before submitting a Pull Request.
Coding standards are enforced using PHP-CS-Fixer
composer csfixer
Static code analysis can be achieved using PHPStan
composer phpstan
By default, test suite is configured to generate a code coverage report in tests/coverage
folder
(requires PCOV extension).
composer test