diff options
Diffstat (limited to 'ecs.php')
| -rw-r--r-- | ecs.php | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +<?php + +declare(strict_types=1); + +use Symplify\EasyCodingStandard\Config\ECSConfig; + +require_once __DIR__ . '/vendor/autoload.php'; + +return ECSConfig::configure() + ->withPaths([ + __DIR__ . '/index.php', + ]) + ->withPreparedSets( + psr12: true, + common: true, + ); |
