php-cs-fixer config for REDAXO
github.com/redaxo/php-cs-fixer-config
pkg:composer/redaxo/php-cs-fixer-config
Installs: 90 293
Dependents: 7
Suggesters: 0
Stars: 10
Open Issues: 2
Advisories: 0
Aikido package health analysis
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT 7c1be24d0120647266da2706209d649baf28dea1
static analysisstandardsfixerStatic code analysis
This package is auto-updated.
Last update: 2026-03-01 00:50:08 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) ;