- Install Code Sniffer:
composer require --dev squizlabs/php_codesniffer
- Install the Equisoft ruleset:
composer require --dev kronostechnologies/php-code-standard
- Add a
phpcs.xml
file at the root of your project:<?xml version="1.0"?> <ruleset> <rule ref="./vendor/kronostechnologies/php-coding-standard/phpcs.xml"/> </ruleset>
- Add an entry in your Makefile:
check: phpcs phpcs: ./vendor/bin/phpcs --standard="./phpcs.xml" -p -s .
- Configure CircleCI with the phpcs Orb Orb
Apply your changes, merge in master
branch, then execute the following commands from the root:
# Mirrors php-coding-standard repository in kronostechnologies/php-coding-standard
./bin/split.sh
# Push tag to kronostechnologies/php-coding-standard
./bin/release.sh v(MAJOR.MINOR.PATCH)
To get the latest tag without opening the php-coding-standard repository, checkout the file .tag.
Follow Semantic Versioning.
Afterwards, it is automatically published through packagist.