forked from basho/riak-phppb-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.24 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "basho/riak-pb",
"description": "Official Riak Protocol Buffers client for PHP",
"type": "library",
"keywords": [
"basho",
"riak",
"client",
"driver",
"database",
"nosql",
"kv",
"datatype",
"crdt",
"data",
"pb"
],
"homepage": "http://basho.com/riak/",
"license": "Apache-2.0",
"authors": [
{
"name": "Christopher Mancini",
"email": "[email protected]",
"homepage": "https://github.com/christophermancini",
"role": "Lead Developer"
}
],
"autoload": {
"psr-4": {"Basho\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Basho\\Tests\\": "vendor/basho/riak/tests/"}
},
"support": {
"issues": "https://github.com/basho/riak-phppb-client/issues"
},
"repositories": [
{
"type": "package",
"package": {
"name": "basho/riak_pb",
"version": "2.1.3.0",
"dist": {
"url": "https://github.com/basho/riak_pb/archive/2.1.3.0.zip",
"type": "zip"
}
}
}
],
"require": {
"basho/riak": "3.1.*",
"php": ">=5.5",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"basho/riak_pb": "2.1.*",
"phpunit/phpunit": "4.5.*",
"apigen/apigen": "4.1.*"
}
}