jetzt auch mit einheitstests

This commit is contained in:
lubiana 2025-06-28 15:55:01 +02:00
parent d68e7f45b3
commit e883913d3a
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
10 changed files with 3952 additions and 16 deletions

View file

@ -2,6 +2,7 @@
declare(strict_types=1);
use PhpCsFixer\Fixer\Import\OrderedImportsFixer;
use PhpCsFixer\Fixer\Import\NoUnusedImportsFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
@ -9,11 +10,9 @@ return ECSConfig::configure()
->withPaths([
__DIR__ . '/public',
__DIR__ . '/src',
__DIR__ . '/tests',
])
->withRootFiles()
->withRules([
NoUnusedImportsFixer::class,
])
->withPhpCsFixerSets(
per: true,
php84Migration: true,
@ -25,4 +24,8 @@ return ECSConfig::configure()
strict: true,
cleanCode: true,
)
->withRules([
NoUnusedImportsFixer::class,
OrderedImportsFixer::class,
])
;