Skip to content

Commit 0f56b8e

Browse files
Updated contribution guide
1 parent c395027 commit 0f56b8e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Contributions are welcome, and are accepted via pull requests. Please review the
99

1010
* Please follow the [PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) and [PHP-FIG Naming Conventions](https://github.com/php-fig/fig-standards/blob/master/bylaws/002-psr-naming-conventions.md).
1111
* Ensure that the current tests pass, and if you've added something new, add the tests where relevant.
12-
* Remember that we follow [SemVer](http://semver.org). If you are changing the behaviour, or the public api, you may need to update the docs.
12+
* Remember that we follow [SemVer](http://semver.org). If you are changing the behavior, or the public api, you may need to update the docs.
1313
* Send a coherent commit history, making sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash](http://git-scm.com/book/en/Git-Tools-Rewriting-History) them before submitting.
1414
* You may also need to [rebase](http://git-scm.com/book/en/Git-Branching-Rebasing) to avoid merge conflicts.
1515

@@ -24,12 +24,14 @@ First, install the dependencies:
2424
$ composer install
2525
```
2626

27-
Then run phpunit:
27+
Then run PHPUnit:
2828

2929
```bash
3030
$ vendor/bin/phpunit
3131
```
3232

3333
If the test suite passes on your local machine you should be good to go.
3434

35-
When you make a pull request, the tests will automatically be run again by [Travis CI](https://travis-ci.org/) on multiple php versions and hhvm.
35+
When you make a pull request, the tests will automatically be run again by [Travis CI](https://travis-ci.org/) on multiple PHP versions and HHVM.
36+
37+
We also have StyleCI setup to automatically check and fix any code style issues.

0 commit comments

Comments
 (0)