php-cs-fixer config for REDAXO
github.com/redaxo/php-cs-fixer-config
pkg:composer/redaxo/php-cs-fixer-config
Transparency log
Installs: 108 660
Dependents: 7
Suggesters: 0
Stars: 10
Open Issues: 1
Advisories: 0
Aikido package health analysis
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT 720c239030d1ab125e28afa7b7189cdce526f2fb
static analysisstandardsfixerStatic code analysis
Published on Packagist.org on 2026-08-22 12:27 UTC
This package is auto-updated.
Last update: 2026-08-22 12:27:36 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) ;