-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfection.json5
More file actions
51 lines (50 loc) · 958 Bytes
/
infection.json5
File metadata and controls
51 lines (50 loc) · 958 Bytes
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
{
"source": {
"directories": [
"app"
],
"excludes": [
"Config",
"Folder/with/File.php",
"/\\.interface\\.php/",
"{Infrastructure/.*}"
]
},
"timeout": 100,
"logs": {
"html": "infection.html",
"summary": "infection-summary.log",
"perMutator": "per-mutator.md",
"github": true,
"stryker": {
"badge": "/^release-.*$/"
}
},
"tmpDir": "",
"phpUnit": {
"configDir": "",
"customPath": ""
},
"mutators": {
"global-ignore": [
"FooClass::__construct"
],
"global-ignoreSourceCodeByRegex": [
"Assert::.*"
],
"@default": true,
"@function_signature": false,
"TrueValue": {
"ignore": [
"NameSpace\\*\\Class::method"
],
"ignoreSourceCodeByRegex": [
"\\$this->logger.*"
]
}
},
"testFramework":"phpunit",
"bootstrap":"",
"initialTestsPhpOptions": "",
"testFrameworkOptions": ""
}