-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpinsights.php
More file actions
159 lines (138 loc) · 4.84 KB
/
Copy pathphpinsights.php
File metadata and controls
159 lines (138 loc) · 4.84 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
declare(strict_types=1);
use NunoMaduro\PhpInsights\Domain\Sniffs\ForbiddenSetterSniff;
return [
/*
|--------------------------------------------------------------------------
| Default Preset
|--------------------------------------------------------------------------
|
| This option controls the default preset that will be used by PHP Insights
| to make your code reliable, simple, and maintainable. Please make sure
| the preset you select does not conflict with your project's requirements.
|
*/
'preset' => 'laravel',
/*
|--------------------------------------------------------------------------
| IDE
|--------------------------------------------------------------------------
|
| This option allows to add hyperlinks in your terminal to quickly open
| files in your favorite IDE while browsing your PhpInsights report.
|
*/
'ide' => null,
/*
|--------------------------------------------------------------------------
| Configuration
|--------------------------------------------------------------------------
|
| Here you may adjust all the various settings that are maintained by the
| package. You can either add, remove or configure `Insights`. Keep in
| mind that all added `Insights` must belong to a specific `Metric`.
|
*/
'exclude' => [
'vendor',
'node_modules',
'storage',
'bootstrap/cache',
'tests',
'database/seeders',
'database/factories',
'config',
'resources/lang',
],
'add' => [
// Additional insights to be added
],
'remove' => [
'NunoMaduro\PhpInsights\Domain\Insights\ForbiddenNormalClasses',
'NunoMaduro\PhpInsights\Domain\Insights\ForbiddenTraits',
ForbiddenSetterSniff::class,
],
'config' => [
/*
|--------------------------------------------------------------------------
| Excluded Files
|--------------------------------------------------------------------------
|
| Here you may exclude files from being analyzed by PHP Insights. You
| can either exclude specific files or entire directories.
|
*/
'exclude' => [
'vendor',
'node_modules',
'storage',
'bootstrap/cache',
'tests',
'database/seeders',
'database/factories',
'config',
'resources/lang',
],
/*
|--------------------------------------------------------------------------
| Add Sniffs
|--------------------------------------------------------------------------
|
| Here you can add your own custom sniffs to the analyzer. These sniffs
| will be added to the default preset that you have selected.
|
*/
'add' => [
// Additional insights to be added
],
/*
|--------------------------------------------------------------------------
| Remove Sniffs
|--------------------------------------------------------------------------
|
| Here you can remove sniffs from the analyzer. These sniffs will be
| removed from the default preset that you have selected.
|
*/
'remove' => [
'NunoMaduro\PhpInsights\Domain\Insights\ForbiddenNormalClasses',
'NunoMaduro\PhpInsights\Domain\Insights\ForbiddenTraits',
ForbiddenSetterSniff::class,
],
/*
|--------------------------------------------------------------------------
| Configuration for insights
|--------------------------------------------------------------------------
|
| Configuration for insights
|
*/
],
/*
|--------------------------------------------------------------------------
| Requirements
|--------------------------------------------------------------------------
|
| Here you may define a level you want to reach per `Insights` category.
| When a score is lower than the minimum level defined, then an error
| code will be returned. This is optional and individually defined.
|
*/
'requirements' => [
'min-quality' => 80,
'min-complexity' => 80,
'min-architecture' => 80,
'min-style' => 80,
],
/*
|--------------------------------------------------------------------------
| Threads
|--------------------------------------------------------------------------
|
| Here you may adjust how many threads (core) PHPInsights can use to perform
| the analyse. This is optional, don't provide it and the tool will guess
| the max core number available. It accepts null value or integer > 0.
|
*/
'threads' => null,
];