redaxo/php-cs-fixer-config

php-cs-fixer config for REDAXO

2.1.1 2023-03-12 10:25 UTC

This package is auto-updated.

Last update: 2023-03-13 09:24:38 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 (new Redaxo\PhpCsFixerConfig\Config())
    ->setFinder($finder)
;