phlak/coding-standards
Predefined PHP-CS-Fixer coding standards by PHLAK. Install as a dev dependency, initialize via composer exec cs init or create a config using ConfigFactory with a Finder, then run php-cs-fixer. Supports adding or overriding rules via ConfigFactory::make().
composer require --dev phlak/coding-standards
After installation you may initialze the coding standards configuration with the provided cs executable.
composer exec cs init
Alternatively you may manually create a .php-cs-fxer.dist.php file in the root folder with the following contents.
<?php
require __DIR__ . '/vendor/autoload.php';
$finder = PhpCsFixer\Finder::create()->in([
// List of paths you wish to include
]);
return PHLAK\CodingStandards\ConfigFactory::make($finder);
Add the paths you wish to be coverd to the array.
Now you may run php-cs-fixer as normal.
You can add additional rules or override pre-defined ones by passing them as the second parameter to the ConfigFactory::make() method. These rules will be merged with the pre-defined rules.
return PHLAK\CodingStandards\ConfigFactory::make($finder, [
// Your additional rules here...
]);
Additional configuration can be achieved by chaining methods onto the ConfigFactory::make() method.
return PHLAK\CodingStandards\ConfigFactory::make($finder)
->setIndent("\t")
->setLineEnding("\r\n")
->setRiskyAllowed();
A list of changes can be found on the GitHub Releases page.
For general help and support join our GitHub Discussions or reach out on Bluesky.
Please report bugs to the GitHub Issue Tracker.
This project is licensed under the MIT License.
How can I help you explore Laravel packages today?