mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 10:49:37 +02:00
19 lines
435 B
PHP
19 lines
435 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()
|
|
->finder($finder)
|
|
->setUsingCache(true)
|
|
;
|