-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.22 KB
/
composer.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
{
"name": "tarantool/benchmarks",
"description": "Benchmarks for Tarantool PHP connectors.",
"keywords": ["tarantool", "nosql", "client", "connector", "benchmark", "performance", "ext-swoole", "ext-async", "ext-parallel"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eugene Leonovich",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"phpbench/phpbench": "^1.0@dev",
"rybakit/msgpack": "^0.6.1",
"symfony/filesystem": "^4.3",
"tarantool/client": "dev-master"
},
"suggest": {
"ext-msgpack": "For benchmarking Tarantool\\Client\\Packer\\PeclPacker",
"ext-tarantool": "For benchmarking the official PHP connector",
"ext-swoole": "For benchmarking connectors in async mode",
"ext-async": "For benchmarking connectors in async mode",
"ext-parallel": "For benchmarking connectors in parallel mode"
},
"autoload": {
"psr-4": {
"Tarantool\\Benchmarks\\": ["src/", "benchmarks/"]
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}