13 lines
309 B
PHP
13 lines
309 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use Lubiana\CodeQuality\LubiSetList;
|
|
use Symplify\EasyCodingStandard\Config\ECSConfig;
|
|
|
|
return ECSConfig::configure()
|
|
->withSets([LubiSetList::ECS])
|
|
->withPaths(
|
|
[
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/config',
|
|
]
|
|
)->withRootFiles();
|