sirix/php-cs-fixer-config

Sirix PHP coding standards fixer configuration.

Maintainers

Package info

github.com/sirix777/php-cs-fixer-config

pkg:composer/sirix/php-cs-fixer-config

Fund package maintenance!

sirix777

buymeacoffee.com/sirix

Statistics

Installs: 776

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.1.2 2025-11-22 18:48 UTC

This package is auto-updated.

Last update: 2026-05-10 13:40:15 UTC


README

Wrapper with pre-defined rules around the PHP-CS-Fixer package - A tool to automatically fix PHP Coding Standards issues.

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

Installation

Using Composer

The recommended way to install PHP CS Fixer is to use Composer in a dedicated composer.json file in your project, for example in the tools/php-cs-fixer directory:

  1. Create a new tools/php-cs-fixer directory:
mkdir -p tools/php-cs-fixer
  1. Install via composer:
composer req --dev --working-dir=tools/php-cs-fixer sirix/php-cs-fixer-config

Configuration

  1. Create PHP file and name it .php-cs-fixer.dist.php and place it inside root directory of project. It will be recognized by PHP CS Fixer automatically.

  2. Contents of file should look like this:

    <?php
    
    declare(strict_types=1);
    
    use Sirix\CsFixerConfig\ConfigBuilder;
    
    return ConfigBuilder::create()
        ->inDir(__DIR__ . '/src')
        ->inDir(__DIR__ . '/test')
        ->getConfig()
    ;

or, you can add additional rules to the configuration file:

        <?php
        
        declare(strict_types=1);
        
        use Sirix\CsFixerConfig\ConfigBuilder;
        
        return ConfigBuilder::create()
            ->inDir(__DIR__ . '/config')
            ->inDir(__DIR__ . '/src')
            ->inDir(__DIR__ . '/test')
            ->setRules([
                'Gordinskiy/line_length_limit' => ['max_length' => 150],
                '@PHP83Migration' => true,
            ])
            ->getConfig()
        ;
  1. Place .php-cs-fixer.cache file into .gitignore

Usage/Examples

  • Fix coding standards:
$ php tools/php-cs-fixer/vendor/bin/php-cs-fixer fix -v
  • Check coding standards without applying the fix:
$ php tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run
  • Examine the proposed changes:
$ php tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run -v --diff

Documentation