forked from Monofony/Monofony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecs.php
42 lines (35 loc) · 1.3 KB
/
ecs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
use PhpCsFixer\Fixer\Comment\HeaderCommentFixer;
use PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer;
use PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symplify\EasyCodingStandard\ValueObject\Option;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
return static function (ContainerConfigurator $containerConfigurator): void {
$header = <<<EOM
This file is part of the Monofony package.
(c) Monofony
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOM;
$containerConfigurator->import(SetList::SYMFONY);
$services = $containerConfigurator->services();
$services
->set(DeclareStrictTypesFixer::class)
->set(HeaderCommentFixer::class)
->call('configure', [[
'header' => $header,
'location' => 'after_open',
]])
->set(NoSuperfluousPhpdocTagsFixer::class)
->call('configure', [[
'allow_mixed' => true,
]])
;
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PATHS, [__DIR__.'/src']);
$parameters->set(Option::SKIP, [
__DIR__.'/**/*Spec.php',
__DIR__.'/**/.recipe',
]);
};