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-1
Original file line number
Diff line number
Diff line change
@@ -4,4 +4,11 @@ This page contains guidelines for contributing to the PHPHtmlParser package. Ple
4
4
5
5
## Coding Guidelines
6
6
7
-
We follow the [PSR-4](https://www.php-fig.org/psr/psr-4/) autoloading standard and follow the [PSR-12](https://www.php-fig.org/psr/psr-12/) coding style guide. Please ensure you comply to these standards when creating a PR.
7
+
We follow the [PSR-4](https://www.php-fig.org/psr/psr-4/) autoloading standard and follow the [PSR-12](https://www.php-fig.org/psr/psr-12/) coding style guide. To make it easy to comply with the coding standard we use php-cs-fixer to manage the style of the code base. Before pushing your code please ensure you run the following on your changes.
8
+
9
+
```bash
10
+
./vendor/bin/php-cs-fixer fix
11
+
```
12
+
13
+
Please ensure you comply to these standards when creating a PR to make it easy to review and merge.
0 commit comments