melhorenvio/php-cs-fixer

This package is intended to centralize all PHP CS Fixer rules.

Installs: 266 073

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 18

Forks: 0

Open Issues: 1

pkg:composer/melhorenvio/php-cs-fixer

2.0.0 2022-10-18 16:47 UTC

This package is auto-updated.

Last update: 2025-10-06 21:51:28 UTC


README

This package is intended to centralize all PHP CS Fixer rules.

Installation

You can install the package via composer:

composer require melhorenvio/php-cs-fixer

Usage

use Melhorenvio\PhpCsFixer\Style;
use PhpCsFixer\Config;
use PhpCsFixer\Finder;

$finder = Finder::create()
  ->in([
    __DIR__.'/src',
  ]);
  
$style = new Style($finder, new Config);

return $style->rules([
    'your-rule' => true
]);

Rules

Configuration

Area for links that help you configure PHP CS Fixer on the developers' machine

PHPStorm