-
Notifications
You must be signed in to change notification settings - Fork 7
/
phpbench.json
45 lines (45 loc) · 1.32 KB
/
phpbench.json
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
{
"path": "benchmarks",
"bootstrap": "vendor/autoload.php",
"outputs": {
"container_html": {
"title": "PHP Dependency Injection Container Benchmarks",
"extends": "html"
}
},
"retry_threshold": 5,
"reports": {
"container": {
"title": "Time",
"generator": "table",
"compare": "subject",
"compare_fields": [ "mode" ],
"break": ["revs", "its"],
"cols": ["benchmark"]
},
"memory": {
"title": "Memory",
"generator": "table",
"compare": "subject",
"compare_fields": [ "mem" ],
"break": ["revs", "its"],
"cols": ["benchmark"]
},
"environment": {
"title": "Environment",
"extends": "env"
},
"detail": {
"title": "Detail by subject",
"description": "Sorted by mode",
"extends": "aggregate",
"break": [ "subject", "its", "revs" ],
"cols": ["benchmark", "mem", "best", "mean", "mode", "worst", "stdev", "rstdev", "diff" ],
"sort": { "mode": "asc" }
},
"all": {
"generator": "composite",
"reports": ["environment", "container", "memory", "detail"]
}
}
}