forked from symfony/maker-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs.dist
37 lines (32 loc) · 929 Bytes
/
.php_cs.dist
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
<?php
if (!file_exists(__DIR__.'/src')) {
exit(0);
}
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('vendor')
->exclude('tests/tmp')
->exclude('fixtures')
// the PHP template files are a bit special
->notName('*.tpl.php')
;
return PhpCsFixer\Config::create()
->setRules(array(
'@PHPUnit75Migration:risky' => true,
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'header_comment' => [
'header' => <<<EOF
This file is part of the Symfony MakerBundle package.
(c) Fabien Potencier <[email protected]>
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,
))
->setRiskyAllowed(true)
->setFinder($finder)
;