php-cs-fixer config for REDAXO
github.com/redaxo/php-cs-fixer-config
pkg:composer/redaxo/php-cs-fixer-config
Transparency log
Installs: 107 715
Dependents: 7
Suggesters: 0
Stars: 10
Open Issues: 2
Advisories: 0
Aikido package health analysis
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT ddc9c40e62ae8a6e49058f7b92df314d89e40da7
static analysisstandardsfixerStatic code analysis
Published on Packagist.org on 2026-07-29 15:55 UTC
This package is auto-updated.
Last update: 2026-08-01 15:18:34 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) ;