Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 803 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (22 loc) · 803 Bytes

Contributing

Contributions are most welcome!

Check list

  • Write tests
  • Check the code style

To get started:

  • Fork this library
  • Check out the code:
  • Start your own branch:
    • git checkout -b your-feature-branch
  • Check your work:
    • Codestyle check: make phpcs
    • Codestyle fixer: make phpcbf
    • Run tests: vendor/bin/phpunit
    • Optional: Run tests with coverage: vendor/bin/phpunit --coverage-html=build
  • Check code coverage: build/index.html
  • Commit your work: git commit -am "adding new feature"
  • Push your work:
    • git push origin your-feature-branch
  • And open a pull request!

Please GPG sign your commits if possible: git commit -S ...