-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.php-cs-fixer.dist.php
37 lines (32 loc) · 1.03 KB
/
.php-cs-fixer.dist.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
<?php
if (!file_exists(__DIR__.'/src')) {
exit(0);
}
$finder = (new PhpCsFixer\Finder())
->in([
__DIR__.'/src',
__DIR__.'/tests',
__DIR__.'/testBundle'
])
;
return (new PhpCsFixer\Config())
->setRules(array(
'@Symfony' => true,
'@Symfony:risky' => true,
'header_comment' => [
'header' => <<<EOF
----------------------------------------------------------------------------
You shouldn't use this package. We do NOT provide support or BC Guarantees.
We will break things between releases, pull requests, commits, and/or merges.
----------------------------------------------------------------------------
This file is part of the SymfonyCasts Internal Test Helpers package.
Copyright (c) SymfonyCasts <https://symfonycasts.com/>
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF
],
'no_superfluous_phpdoc_tags' => false,
))
->setRiskyAllowed(true)
->setFinder($finder)
;