mll-lab/php-cs-fixer-config

Shared rules for php-cs-fixer

Installs: 378 500

Dependents: 26

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

pkg:composer/mll-lab/php-cs-fixer-config

v5.11.0 2025-03-13 14:52 UTC

README

Shared configuration for php-cs-fixer

GitHub license Packagist Packagist

Installation

composer require --dev mll-lab/php-cs-fixer-config

Usage

In your .php-cs-fixer.php:

<?php declare(strict_types=1);

use function MLL\PhpCsFixerConfig\config;

$finder = PhpCsFixer\Finder::create()
    ->notPath('vendor')
    ->in(__DIR__)
    ->name('*.php')
    ->ignoreDotFiles(true)
    ->ignoreVCS(true);

return config($finder);

Enable risky rules:

use function MLL\PhpCsFixerConfig\risky;

return risky($finder);

Override rules:

return config($finder, [
    'some_rule' => false,
]);

Customize config:

return config($finder)
    ->setHideProgress(true);