-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs.dist
44 lines (41 loc) · 1.35 KB
/
.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
38
39
40
41
42
43
44
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$finder = Finder::create()
->exclude('bootstrap/cache')
->exclude('node_modules')
->exclude('storage')
->in(__DIR__)
->notName('*.blade.php')
->notName('.phpstorm.meta.php')
->notName('_ide_*.php');
return Config::create()
->setUsingCache(false)
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'array_indentation' => true,
'concat_space' => ['spacing' => 'one'],
'increment_style' => ['style' => 'post'],
'linebreak_after_opening_tag' => true,
'mb_str_functions' => true,
'new_with_braces' => false,
'no_php4_constructor' => true,
'no_unreachable_default_argument_value' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'not_operator_with_successor_space' => true,
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'php_unit_strict' => true,
'php_unit_method_casing' => ['case' => 'snake_case'],
'php_unit_test_annotation' => [
'style' => 'annotation',
],
'phpdoc_order' => true,
'simplified_null_return' => true,
'strict_comparison' => true,
'strict_param' => true,
])
->setFinder($finder);