mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 01:39:28 +02:00
20 lines
486 B
PHP
20 lines
486 B
PHP
<?php
|
|
|
|
use Symfony\CS\FixerInterface;
|
|
|
|
$finder = Symfony\CS\Finder\DefaultFinder::create()
|
|
->exclude('lib/components')
|
|
->exclude('lib/vendor')
|
|
->exclude('modules')
|
|
->exclude('nbproject')
|
|
->in(__DIR__)
|
|
->in(__DIR__ . '/modules/localplay')
|
|
->in(__DIR__ . '/modules/catalog')
|
|
->in(__DIR__ . '/modules/plugins')
|
|
;
|
|
|
|
return Symfony\CS\Config\Config::create()
|
|
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
|
|
->finder($finder)
|
|
->setUsingCache(true)
|
|
;
|