Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1.21 KB

CONTRIBUTING.md

File metadata and controls

22 lines (15 loc) · 1.21 KB

Contribution Guidelines

You are welcome to report issues or submit pull requests. While the below guidelines are necessary to get code merged, you can submit pull requests that do not adhere to them and I will try to take care of them in my spare time. If you can make sure the build is passing 100%, that would be very useful.

I recommend including details of your particular usecase(s) with any issues or pull requests.

Questions and Bug Reports

Submit via GitHub Issues.

Pull Requests

Code changes should be sent through GitHub Pull Requests. Before submitting the pull request, make sure that phpunit reports success:

./vendor/bin/phpunit --coverage-html coverage

While the build does not enforce 100% PHPUnit code coverage, it will not allow coverage to drop below its current percentage.

The build will also not allow any errors for the coding standard.

./vendor/bin/phpcs --standard=PSR2 src tests