-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinfection.json.dist
More file actions
38 lines (38 loc) · 950 Bytes
/
infection.json.dist
File metadata and controls
38 lines (38 loc) · 950 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
{
"$schema": "vendor/infection/infection/resources/schema.json",
"source": {
"directories": [
"src"
]
},
"logs": {
"text": "infection.log",
"summary": "infection-summary.log",
"json": "infection.json",
"perMutator": "infection-per-mutator.md"
},
"tmpDir": ".infection",
"timeout": 10,
"php": {
"configTimeout": 30
},
"mutators": {
"@default": true,
"@function_signature": true,
"@number": true,
"@operator": true,
"@regex": true,
"@removal": true,
"@return_value": true,
"@sort": true,
"@zero_iteration": true,
"@cast": true
},
"testFramework": "phpunit",
"testFrameworkOptions": "--no-coverage --no-logging",
"bootstrap": "vendor/autoload.php",
"minMsi": 85,
"minCoveredMsi": 90,
"threads": 4,
"ignoreMsiWithNoMutations": true
}