Skip to content

Commit 32884ef

Browse files
committed
Update CONTRIBUTING.md
1 parent 8575052 commit 32884ef

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

CONTRIBUTING.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,18 @@
22

33
Here are a few guidelines and rules to follow when you'd like to contribute to the project:
44

5-
- Follow [PSR-1](http://www.php-fig.org/psr/1/) and [PSR-2](http://www.php-fig.org/psr/2/)
5+
- Follow [PSR-1](http://www.php-fig.org/psr/1/)
6+
- Follow [PSR-2](http://www.php-fig.org/psr/2/)
7+
8+
Please ensure that your code fulfills these standards before any Pull Request (PR) by running the following tools found in the bin/ directory after `composer install`.
9+
10+
``` bash
11+
php bin/php-cs-fixer fix src
12+
php bin/php-formatter formatter:use:sort src/
13+
14+
php bin/php-cs-fixer fix tests
15+
php bin/php-formatter formatter:use:sort tests/
16+
```
17+
18+
There is also a policy for contributing to this project. Pull requests must be explained step by step to make the review process easy in order to accept and merge them. New features must come paired with Unit and/or Functional
19+
tests.

0 commit comments

Comments
 (0)