Skip to content

Commit 394d2f5

Browse files
committed
Added readme
1 parent 03779be commit 394d2f5

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# PHP Composter PHPCS WPCS
2+
3+
### Check your PHP source code for compliance with WordPress coding standards before committing.
4+
5+
This Composer package will start to check your PHP files upon each commit to make sure they comply to the [WordPress Coding Standards](https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/).
6+
7+
This is a [PHP Composter](https://github.com/php-composter/php-composter) Action.
8+
9+
Uses the wonderful [PHP CodeSniffer Project](https://github.com/squizlabs/PHP_CodeSniffer).
10+
11+
## Table Of Contents
12+
13+
* [Installation](#installation)
14+
* [Basic Usage](#basic-usage)
15+
* [Contributing](#contributing)
16+
17+
## Installation
18+
19+
Add the repository's URL as a repository to the `composer.json` file:
20+
```
21+
"repositories": [
22+
{
23+
"type": "vcs",
24+
"url": "https://github.com/php-composter/php-composter-phpcs-wpcs"
25+
}
26+
],
27+
```
28+
29+
Then j add as a development requirement to your `composer.json`, and it should work automagically:
30+
31+
```BASH
32+
composer require --dev php-composter/php-composter-phpcs-wpcs
33+
```
34+
35+
## Basic Usage
36+
37+
It should just work when you `git commit`.
38+
39+
## Internals
40+
41+
By default of the 5 different WordPress coding standards (`WordPress-VIP`, `WordPress`, `WordPress-Extra`, `WordPress-Docs` and `WordPress-Core`), this one uses the WordPress-Extra.
42+
43+
If you need to change it, currently you need to edit the Sniff file. Contributions on how to make this dynamic are welcome (.env file, different sniffs for each and choosing the appropriate hooks).
44+
45+
## Contributing
46+
47+
All feedback / bug reports / pull requests are welcome.

0 commit comments

Comments
 (0)