melhorenvio / php-cs-fixer
This package is intended to centralize all PHP CS Fixer rules.
Installs: 188 513
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 19
Forks: 0
Open Issues: 1
Requires
This package is auto-updated.
Last update: 2024-11-06 19:53:06 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