Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 885 Bytes

CONTRIBUTING.md

File metadata and controls

50 lines (32 loc) · 885 Bytes

Contributing

Forking

You should be working in a fork, see the following documentation

Before Making Any Changes

Fetch The Latest Changes from upstream

On the master branch

$ git fetch --all
$ git rebase upstream/master

Create a New Branch

$ git checkout -b reason-for-changes

Refresh Dependencies

$ composer install

Testing Your Changes

In the root directory, you can run the test suite by running:

$ vendor/bin/phpunit 

After Making Your Changes

Commit Your Changes

$ git add [files...]
$ git commit -m "DESCRIPTION OF CHANGES"
$ git push origin master

Pushing Changes Back Upstream

To contribute your changes back, simply perform a Pull Request against the master branch.