kennedy-osaze/php-cs-fixer-config

Opinionated configuration for PHP coding standard rules

3.0 2024-10-24 14:08 UTC

This package is auto-updated.

Last update: 2025-03-26 11:38:26 UTC


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.