php-cs-fixer config for REDAXO
github.com/redaxo/php-cs-fixer-config
pkg:composer/redaxo/php-cs-fixer-config
Installs: 105 568
Dependents: 7
Suggesters: 0
Stars: 10
Open Issues: 1
Advisories: 0
Aikido package health analysis
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT e7d82e6d689ff7ecebd0daaf6ac930a3dbe59bf4
static analysisstandardsfixerStatic code analysis
This package is auto-updated.
Last update: 2026-06-29 06:58:56 UTC
composer require --dev redaxo/php-cs-fixer-config
Example .php-cs-fixer.dist.php:
.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) ;