-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpbench.json
41 lines (41 loc) · 1.09 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
{
"core.extensions": [
"PhpBench\\Extension\\DevelopmentExtension"
],
"runner.bootstrap": "vendor/autoload.php",
"runner.path": "tests/Benchmark",
"runner.php_config": {
"xdebug.mode": "none"
},
"runner.iterations": 10,
"runner.retry_threshold": 5,
"runner.revs": 10,
"runner.assert": "mode(variant.time.avg) as ms <= mode(baseline.time.avg) as ms +/- 5%",
"report.generators": {
"all": {
"generator": "composite",
"reports": [
"env",
"default",
"aggregate"
]
}
},
"core.profiles": {
"examples": {
"core.extensions": [
"PhpBench\\Examples\\Extension\\AcmeExtension"
],
"runner.path": "examples/Benchmark",
"runner.php_disable_ini": true,
"runner.php_config": {
"extension": [
"tokenizer.so",
"dom.so",
"json.so",
"iconv.so"
]
}
}
}
}