Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 602 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (18 loc) · 602 Bytes

CONTRIBUTING

To contribute, you can send pull requests with :

# fix your code style
composer cs-fix

# check if any error that can't be fixed with cs-fix
# that you need to manually fix
composer cs-check
  • Ensure the phpstan check shows No errors with run command:
composer analyze
  • patch(es) need new/updated test(s) that ensure there is no regression.
  • new feature(s) need test(s) that ensure there is no regression.