-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.php-cs-fixer.dist.php
41 lines (35 loc) · 1.07 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
<?php
/*
* This file is part of the AutoTracerBundle package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$header = <<<HEADER
This file is part of the AutoTracerBundle package.
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
HEADER;
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('var')
->exclude('vendor');
return (new PhpCsFixer\Config())
->setRules([
'@PSR12' => true,
'mb_str_functions' => true,
'native_function_invocation' => [
'exclude' => [],
'include' => ['@compiler_optimized'],
'scope' => 'all',
'strict' => true,
],
'header_comment' => [
'header' => $header,
],
'no_unused_imports' => true,
'binary_operator_spaces' => [
"default" => "align_single_space_minimal",
]
])
->setFinder($finder);