dev-develop
dev-developA modified ruleset for Coding Style checks
MIT
dev-master
9999999-devA modified ruleset for Coding Style checks
MIT
Wallogit.com
2017 © Pedro Peláez
A modified ruleset for Coding Style checks
A modified ruleset for Code Style checks. It is based on PSR-2 but allows to indent with 2 spaces instead of 4., (*1)
None for now. When you find an issue, please create an issue., (*2)
You can reference the library, (*3)
Vanilla-psr can be installed using using composer. Simply add fuegas/vanilla-psr to your composer.json file., (*4)
{
"require": {
"fuegas/vanilla-psr": "*"
}
}
You can use the ruleset with the command ``., (*5)
If you only want to type phpcs you can create the file phpcs.xml in the root of your project with contents like this:, (*6)
<ruleset name="Vanilla PSR"> <description>Coding standard using vanilla PSR.</description> <file>src/FileToTest.php</file> <file>tests/*.php</file> <file>tests/**/*.php</file> <rule ref="<dir_to_ruleset>/vanilla-psr/ruleset.xml"/> </ruleset>
If you want to use the standard from cli you can use the following command:, (*7)
vendor/bin/phpcs \ --standard=vanilla-psr \ --runtime-set installed_paths vendor/fuegas/vanilla-psr \ tests
If you use Grunt to automate the check of coding style standards, the following option can be set to use vanilla-psr (assuming you installed vanilla-psr using composer):, (*8)
phpcs: {
options: {
standard: './vendor/fuegas/vanilla-psr/vanilla-psr/ruleset.xml',
}
}
A modified ruleset for Coding Style checks
MIT
A modified ruleset for Coding Style checks
MIT