-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpbench.json
More file actions
26 lines (26 loc) · 913 Bytes
/
phpbench.json
File metadata and controls
26 lines (26 loc) · 913 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
{
"$schema": "./vendor/phpbench/phpbench/phpbench.schema.json",
"runner.bootstrap": "vendor/autoload.php",
"runner.path": "benchmarks",
"runner.file_pattern": "*Bench.php",
"runner.attributes": true,
"runner.annotations": false,
"runner.progress": "dots",
"runner.retry_threshold": 8,
"report.generators": {
"chart": {
"title": "Benchmark Chart",
"description": "Console bar chart grouped by benchmark subject",
"generator": "component",
"components": [
{
"component": "bar_chart_aggregate",
"x_partition": ["subject_name"],
"bar_partition": ["benchmark_name"],
"y_expr": "mode(partition['result_time_avg'])",
"y_axes_label": "yValue as time precision 1"
}
]
}
}
}