-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpbench.json
31 lines (31 loc) · 926 Bytes
/
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
{
"runner.bootstrap": "tests/Fixtures/bench_autoload.php",
"runner.path": "tests/Benchmarks",
"runner.file_pattern": "*Bench.php",
"runner.output_mode": "time",
"runner.retry_threshold": 5,
"runner.php_config": {
"opcache.enable": true,
"opcache.enable_cli": true,
"opcache.jit": 1235,
"xdebug.mode": "off"
},
"report.generators": {
"all": {
"generator": "composite",
"reports": [ "env", "benchmark" ]
},
"default": {
"extends": "expression",
"break": [ "benchmark" ],
"cols": [ "benchmark", "subject", "set", "mem_peak", "mode", "best", "mean", "worst", "stdev", "rstdev" ]
}
},
"report.outputs": {
"html": {
"renderer": "html",
"path": "build/bench-report.html",
"title": "Flight Routing Benchmark"
}
}
}