-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
49 lines (49 loc) · 1.34 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
{
"name": "webmozart/key-value-store",
"description": "A key-value store API with implementations for different backends.",
"license": "MIT",
"authors": [
{
"name": "Bernhard Schussek",
"email": "[email protected]"
}
],
"require": {
"php": "^5.3.3|^7.0",
"webmozart/assert": "^1.0"
},
"require-dev": {
"webmozart/json": "^1.1.1",
"symfony/filesystem": "^2.5",
"predis/predis": "^1.0",
"basho/riak": "^1.4",
"doctrine/cache": "^1.4",
"phpunit/phpunit": "^4.6",
"doctrine/dbal" : "^2.4",
"sebastian/version": "^1.0.1",
"mongodb/mongodb": "^1.0"
},
"suggest": {
"webmozart/json": "to enable the JsonFileStore",
"predis/predis": "to enable the PredisStore",
"basho/riak": "to enable the RiakStore",
"doctrine/cache": "to enable the CachedStore",
"doctrine/dbal": "to enable the DbalStore",
"mongodb/mongodb": "to enable the MongoDbStore"
},
"autoload": {
"psr-4": {
"Webmozart\\KeyValueStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webmozart\\KeyValueStore\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}