blob: e188c94ff62ec98249ad2ac261b151b32288913e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
);
|