Codebase list php-embed / fresh-snapshots/main .php_cs.dist
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

.php_cs.dist @fresh-snapshots/mainraw · history · blame

<?php

return My\PhpCsFixerConfig::create()
    ->setFinder(
        PhpCsFixer\Finder::create()
            ->files()
            ->name('*.php')
            ->in(__DIR__.'/src')
            ->in(__DIR__.'/demo')
            ->in(__DIR__.'/tests')
            ->exclude('cache')
            ->exclude('fixtures')
    );