banovo/coding-standard

CodeSniffer ruleset for the Banovo PHP coding standard

Installs: 5 918

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 0

Open Issues: 0

Type:phpcodesniffer-standard

0.8.1 2020-10-28 09:30 UTC

README

Build Status

Installation

Add to composer.json:

"require-dev": {
    "banovo/coding-standard": "0.3.*"
},
"scripts": {
    "post-install-cmd": [
        "echo 'bin/checker' > .git/hooks/pre-commit"
    ],
    "post-update-cmd": [
        "echo 'bin/checker' > .git/hooks/pre-commit"
    ]
},

Add pre-commit hook

echo './vendor/bin/php-cs-fixer fix --config=./vendor/banovo/coding-standard/rulesets/.php_cs.dist src && git add .' > .git/hooks/pre-commit

Usage

Pre-commit hook will execute checker automatically, when you run git commit.

Execute bin/checker -h to see additional configuration.

Update

Ensure it is up-to-date: