Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 928 Bytes

contributing.md

File metadata and controls

38 lines (25 loc) · 928 Bytes

Contributing

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

Coding standards are enforced using PHP-CS-Fixer

composer csfixer

Static code analysis

Static code analysis can be achieved using PHPStan

composer phpstan

Running Tests

By default, test suite is configured to generate a code coverage report in tests/coverage folder (requires PCOV extension).

composer test