mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
27 lines
No EOL
767 B
PHP
27 lines
No EOL
767 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
use Symplify\EasyCodingStandard\Configuration\Option;
|
|
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
|
|
use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
$parameters = $containerConfigurator->parameters();
|
|
$parameters->set(Option::SETS, [
|
|
SetList::CLEAN_CODE,
|
|
SetList::PSR_12,
|
|
SetList::SYMFONY,
|
|
//SetList::SYMPLIFY
|
|
]);
|
|
|
|
$parameters->set(Option::PATHS, [
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/tests',
|
|
]);
|
|
|
|
$parameters->set(Option::SKIP, [
|
|
LineLengthFixer::class => null
|
|
]);
|
|
}; |