Skip to content

Commit fac3e7b

Browse files
committed
Update the
1 parent f4050be commit fac3e7b

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,29 @@ Contributions are welcome, and are accepted via pull requests. Please review the
44

55
## Guidelines
66

7-
* Please follow the [PSR-2 Coding Standard](http://php-fig.org/psr/psr-2) and [PHP-FIG Naming Conventions](http://php-fig.org/bylaws/psr-naming-conventions).
8-
* Ensure that the current tests pass, and if you've added something new, add the tests where relevant.
9-
* 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.
10-
* 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](https://git-scm.com/book/en/Git-Tools-Rewriting-History) them before submitting.
11-
* You may also need to [rebase](https://git-scm.com/book/en/Git-Branching-Rebasing) to avoid merge conflicts.
7+
- Please follow the [PSR-2 Coding Style Guide](http://www.php-fig.org/psr/psr-2), enforced by [StyleCI](https://styleci.io).
8+
- Ensure that the current tests pass, and if you've added something new, add the tests where relevant.
9+
- Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
10+
- You may need to [rebase](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) to avoid merge conflicts.
11+
- If you are changing the behavior, or the public api, you may need to update the docs.
12+
- Please remember that we follow [SemVer](http://semver.org).
1213

1314
## Running Tests
1415

1516
You will need an install of [Composer](https://getcomposer.org) before continuing.
1617

1718
First, install the dependencies:
1819

19-
```bash
20+
```sh
2021
$ composer install
2122
```
2223

23-
Then run PHPUnit:
24+
Then run [PHPUnit](https://phpunit.de):
2425

25-
```bash
26+
```sh
2627
$ vendor/bin/phpunit
2728
```
2829

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

31-
When you make a pull request, the tests will automatically be run again by [Travis CI](https://travis-ci.org/) on multiple PHP versions.
32+
When you make a pull request, the tests will automatically be run again by [Travis CI](https://travis-ci.org).

0 commit comments

Comments
 (0)