This package allows sharing identical php-cs-fixer formatting rules across all of your projects without copy-and-pasting configuration files.
Install friendsofphp/php-cs-fixer
& this package via Composer:
composer require --dev friendsofphp/php-cs-fixer gomzyakov/php-cs-fixer-config
Then create file .php-cs-fixer.dist.php
at the root of your project with following contents:
<?php
use Gomzyakov\CS\Finder;
use Gomzyakov\CS\Config;
// Routes for analysis with `php-cs-fixer`
$routes = ['./src', './tests'];
return Config::createWithFinder(Finder::createWithRoutes($routes));
Change the value of $routes
depending on where your project's source code is.
And that's it! You can now find code style violations with following command:
./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run
And then completely fix them all with:
./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php
You must pass a set of routes to the Finder::createWithRoutes()
call. For example, for Laravel projects, this would be:
Finder::createWithRoutes(['./app', './config', './database', './resources', './routes', './tests'])
Also, you can pass a custom set of rules to the Config::createWithFinder()
call:
Config::createWithFinder($finder, [
'@PHP81Migration' => true,
'array_indentation' => false
])
The following describes the use of styles in conjunction with friendsofphp/php-cs-fixer
. Also you can use these style settings for Laravel Pint.
If you find any package errors, please, make an issue in current repository.
This is open-sourced software licensed under the MIT License.