forked from netresearch/t3x-rte_ckeditor_image
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinfection.json5
More file actions
32 lines (32 loc) · 933 Bytes
/
Copy pathinfection.json5
File metadata and controls
32 lines (32 loc) · 933 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
{
"$schema": "https://raw.githubusercontent.com/infection/infection/master/resources/schema.json",
"source": {
"directories": [
"Classes"
],
"excludes": [
// Skip simple DTOs and value objects with no logic
"Domain/Model"
]
},
"logs": {
"html": ".Build/logs/infection.html",
"text": ".Build/logs/infection.log",
"summary": ".Build/logs/infection-summary.log",
"perMutator": ".Build/logs/infection-per-mutator.md"
},
"mutators": {
"@default": true,
// Disable noisy mutators that often create equivalent mutants
"TrueValue": false,
"FalseValue": false
},
"minMsi": 25,
"minCoveredMsi": 90,
"testFramework": "phpunit",
"phpUnit": {
"customPath": ".Build/bin/phpunit",
"configDir": "Build/phpunit"
},
"tmpDir": ".Build/infection-tmp"
}