-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
infection.json5
43 lines (43 loc) · 1.11 KB
/
infection.json5
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
{
"$schema": "vendor/infection/infection/resources/schema.json",
"source": {
"directories": [
"src"
]
},
"logs": {
"text": "php://stderr",
"github": true
},
// "logs": {
// "text": "infection.log"
// },
"mutators": {
"@default": {
"ignore": [
"Illuminate\\Container\\Container",
"Illuminate\\Container\\BoundMethod"
]
},
"PublicVisibility": {
"ignore": [
"MichaelRubel\\EnhancedContainer\\Traits\\BootsCallProxies::bootCallProxies"
]
},
"ProtectedVisibility": {
"ignore": [
"MichaelRubel\\EnhancedContainer\\Traits\\InteractsWithContainer"
]
},
"Throw_": {
"ignore": [
"MichaelRubel\\EnhancedContainer\\Core\\CallProxy::handleMissing"
]
},
"ArrayItemRemoval": {
"ignore": [
"MichaelRubel\\EnhancedContainer\\Core\\CallProxy::containerCall::124"
]
}
}
}