Codebase list php-embed / upstream/4.4.3 .php_cs.dist
upstream/4.4.3

Tree @upstream/4.4.3 (Download .tar.gz)

.php_cs.dist @upstream/4.4.3raw · 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')
    );