redaxo/php-cs-fixer-config
Opinionated PHP-CS-Fixer configuration for REDAXO projects. Ships a ready-to-use ruleset to standardize code style and enforce consistent formatting across your codebase, making it easier to keep teams aligned and reviews focused on logic, not whitespace.
composer require --dev redaxo/php-cs-fixer-config
Example .php-cs-fixer.dist.php:
<?php
use PhpCsFixer\Finder;
use Redaxo\PhpCsFixerConfig\Config;
$finder = (new Finder())
->in(__DIR__)
;
return Config::redaxo5() // or `::redaxo6()`
->setFinder($finder)
;
How can I help you explore Laravel packages today?