forked from symfony/maker-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs-fixer.dist.php
43 lines (38 loc) · 1.04 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
37
38
39
40
41
42
43
<?php
if (!file_exists(__DIR__.'/src')) {
exit(0);
}
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('vendor')
->exclude('tests/tmp')
->exclude('fixtures')
// the PHP template files are a bit special
->notName('*.tpl.php')
;
return (new PhpCsFixer\Config())
->setRules(array(
'@PHP80Migration' => true,
'@PHPUnit84Migration:risky' => true,
'@Symfony' => true,
'@Symfony:risky' => true,
'header_comment' => [
'header' => <<<EOF
This file is part of the Symfony MakerBundle package.
(c) Fabien Potencier <fabien@symfony.com>
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF
],
'protected_to_private' => false,
'semicolon_after_instruction' => false,
'trailing_comma_in_multiline' => [
'elements' => [
'arrays',
'parameters'
],
],
))
->setRiskyAllowed(true)
->setFinder($finder)
;