-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathinfection.json5
34 lines (34 loc) · 982 Bytes
/
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
{
"$schema" : "vendor/infection/infection/resources/schema.json",
"source" : {
"directories": [
"src"
]
},
"logs" : {
"text": "build/infection.log",
"html": "build/infection.html"
},
"mutators" : {
"@default" : true,
"ProtectedVisibility": {
"ignore": [
"Sprout\\Concerns\\FindsIdentityRouteParameters::initialiseRouteParameter",
"Sprout\\Concerns\\FindsIdentityRouteParameters::getParameterPatternMapping",
"Sprout\\Concerns\\FindsIdentityRouteParameters::applyParameterMapping",
"Sprout\\Support\\BaseFactory::callCustomCreator"
]
},
"UnwrapUcFirst" : {
"ignore": [
"Sprout\\Support\\BaseFactory::hasDriver::82"
]
},
"Throw_" : {
"ignore": [
"Sprout\\Support\\BaseFactory::callCustomCreator"
]
}
},
"testFrameworkOptions": "--testsuite=Unit,Feature"
}