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
+15-1
Original file line number
Diff line number
Diff line change
@@ -2,4 +2,18 @@
2
2
3
3
Here are a few guidelines and rules to follow when you'd like to contribute to the project:
4
4
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
0 commit comments