redaxo/php-cs-fixer-config

php-cs-fixer config for REDAXO

2.10.0 2024-05-11 09:21 UTC

This package is auto-updated.

Last update: 2024-05-16 00:17:16 UTC


README

Installation

composer require --dev redaxo/php-cs-fixer-config

Example .php-cs-fixer.dist.php:

<?php

$finder = (new PhpCsFixer\Finder())
    ->in(__DIR__)
;

return (Redaxo\PhpCsFixerConfig\Config::redaxo5()) // or `::redaxo6()`
    ->setFinder($finder)
;