Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.04 KB

CONTRIBUTING.md

File metadata and controls

28 lines (19 loc) · 1.04 KB

Contributing

Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests.

Guidelines

  • Please follow the PSR-2 Coding Style Guide, enforced by StyleCI.
  • Ensure that the current tests pass, and if you've added something new, add the tests where relevant.
  • Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
  • You may need to rebase to avoid merge conflicts.
  • If you are changing or adding to the behaviour or public API, you may need to update the docs.
  • Please remember that we follow SemVer.

Running Tests

First, install the dependencies using Composer:

$ composer install

Then run PHPUnit:

$ vendor/bin/phpunit

The tests will be automatically run by Travis CI against pull requests.