This Composer package will start to check your PHP files upon each commit to make sure they comply to the WordPress Coding Standards.
This is a PHP Composter Action.
Uses the wonderful PHP CodeSniffer Project.
Add the repository's URL as a repository to the composer.json
file:
"repositories": [
{
"type": "vcs",
"url": "https://github.com/php-composter/php-composter-phpcs-wpcs"
}
],
Then j add as a development requirement to your composer.json
, and it should work automagically:
composer require --dev php-composter/php-composter-phpcs-wpcs
It should just work when you git commit
.
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.
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).
All feedback / bug reports / pull requests are welcome.