bump dependencies and update config

This commit is contained in:
lubiana 2024-01-25 18:31:04 +01:00
parent 3c81249b90
commit f30fbd3758
6 changed files with 134 additions and 147 deletions

18
ecs.php
View file

@ -3,13 +3,11 @@
use Lubiana\CodeQuality\LubiSetList;
use Symplify\EasyCodingStandard\Config\ECSConfig;
return static function (ECSConfig $c): void {
$c->paths([
__DIR__ . '/src',
__DIR__ . '/config',
__DIR__ . '/rector.php',
__DIR__ . '/ecs.php',
]);
$c->sets([LubiSetList::ECS]);
};
return ECSConfig::configure()
->withSets([LubiSetList::ECS])
->withPaths(
[
__DIR__ . '/src',
__DIR__ . '/config',
]
)->withRootFiles();