You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+8-7
Original file line number
Diff line number
Diff line change
@@ -7,16 +7,17 @@ Contributions are welcome, and are accepted via pull requests. Please review the
7
7
8
8
## Guidelines
9
9
10
-
* 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).
10
+
* Please follow the [PSR-2 Coding Style Guide](http://www.php-fig.org/psr/psr-2/), enforced by [StyleCI](https://styleci.io/).
11
11
* 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 behavior, or the public api, you may need to update the docs.
13
-
* 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.
14
-
* You may also need to [rebase](http://git-scm.com/book/en/Git-Branching-Rebasing) to avoid merge conflicts.
12
+
* Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
13
+
* You may need to [rebase](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) to avoid merge conflicts.
14
+
* If you are changing the behavior, or the public api, you may need to update the docs.
15
+
* Please remember that we follow [SemVer](http://semver.org/).
15
16
16
17
17
18
## Running Tests
18
19
19
-
You will need an install of [Composer](https://getcomposer.org) before continuing.
20
+
You will need an install of [Composer](https://getcomposer.org/) before continuing.
20
21
21
22
First, install the dependencies:
22
23
@@ -32,6 +33,6 @@ $ vendor/bin/phpunit
32
33
33
34
If the test suite passes on your local machine you should be good to go.
34
35
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
+
When you make a pull request, the tests will automatically be run again by [Travis CI](https://travis-ci.org/).
36
37
37
-
We also have StyleCI setup to automatically check and fix any code style issues.
38
+
We also have [StyleCI](https://styleci.io/) setup to automatically fix any code style issues.
0 commit comments