brackets / code-style-fixer
Fixing php code style
Installs: 13 619
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
- brainmaestro/composer-git-hooks: ^2.6
- friendsofphp/php-cs-fixer: ^3
- symfony/console: ^3.2 || ^4.0 || ^5.0 || ^6.0
- symfony/filesystem: ^3.2 || ^4.0 || ^5.0 || ^6.0
Requires (Dev)
- phpunit/phpunit: ^7.1
This package is auto-updated.
Last update: 2024-11-10 19:33:33 UTC
README
This repository is the source for Php Cs Fixer installation to your project. It uses brainmaestro/composer-git-hooks and friendsofphp/php-cs-fixer for its purpose and creates only wrapper for this packages.
First you need to require this composer package:
composer require --dev brackets/code-style-fixer
Next you have to add this to script section of composer.json
"scripts": {
...
"post-install-cmd": [
...
"[ $COMPOSER_DEV_MODE -eq 0 ] || ./vendor/bin/code-style-fixer.sh git-hooks-add --ignore-lock"
],
"post-update-cmd": [
...
"[ $COMPOSER_DEV_MODE -eq 0 ] || ./vendor/bin/code-style-fixer.sh git-hooks-update"
]
}
And then you have to install the package
./vendor/bin/code-style-fixer.sh install
Now you should have installed the package and on every pre-commit the fixer will run. On every pre-push the fixer will run, but only to check if everything is ok. If not, push will fail.
Additional commands
Git Hooks
You can manipulate the git hooks by
./vendor/bin/code-style-fixer.sh git-hooks-add | git-hooks-update | git-hooks-remove | git-hooks-list
This commands are just wrapper for brainmaestro/composer-git-hooks package, so see https://github.com/BrainMaestro/composer-git-hooks for readme.
Php Cs Fixer
To manually run phpCsFixer script use
./vendor/bin/code-style-fixer.sh fix
You can use all parameters defined in https://github.com/FriendsOfPHP/PHP-CS-Fixer, the fix command is just a wrapper for php-cs-fixer.