Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 1.43 KB

CONTRIBUTING.md

File metadata and controls

40 lines (22 loc) · 1.43 KB

Contributing

Thank you for considering contributing towards this project.

We accept contributions via pull requests on Github.

Pull Requests

  • PSR-2 Coding Standard - Check the code style with $ composer cs-check and fix it with $ composer cs-fix.

  • Add tests! - Your patch may not be accepted if it doesn't have tests.

  • Document any changes - Make sure the README.md and the docs are reflected with the update/change.

  • Consider our release cycle - We try to follow SemVer v2.0.0. Randomly breaking public APIs is not an option.

  • Create feature branches - Don't ask us to pull from your master branch.

  • One PR per feature - If you want to do more than one thing, send multiple pull requests.

  • Squash commit history - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting.

Running Tests

$ composer test

OR

$ vendor/bin/phpunit

Attribution

This contribution guide has been adapted from the thephpleague's skeleton package.

Happy coding!