kennedy-osaze / php-cs-fixer-config
Opinionated configuration for PHP coding standard rules
Installs: 4 772
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
README
This contains an opinionated PHP coding standard rules for PHP-CS-Fixer which could be used on personal projects and packages alike
Installation
composer require --dev kennedy-osaze/php-cs-fixer-config
Basic Usage
Create a .php-cs-fixer.dist.php
config file at the root of your project and paste this:
<?php use KennedyOsaze\PhpCsFixerConfig\Config; use PhpCsFixer\Finder; $finder = Finder::create()->in(__DIR__); return Config::create($finder);
Customisation
By default, the package uses its default rules to set up PHP-CS-Fixer. The rules can be extended by doing:
$rules = [ // Your PHP-CS-Fixer rules come here... ]; return Config::create($finder, $rules);
The KennedyOsaze\PhpCsFixerConfig\Config::create
method basically returns an instance of the PhpCsFixer\Config
class, and as such, more methods from PhpCsFixer\Config
class can be called on the result of the create
method.
Running
Run following command in your project directory, that will run fixer for every .php
file.
vendor/bin/php-cs-fixer fix
License
The MIT License (MIT). Please see License File for more information.