forked from doctrine/KeyValueStore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 719 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 719 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
27
{
"name": "doctrine/key-value-store",
"require": {
"doctrine/common": "*"
},
"require-dev": {
"riak/riak-client": "dev-master",
"microsoft/windowsazure": "dev-master"
},
"repositories": [
{
"type": "pear",
"url": "http://pear.php.net"
}
],
"suggest": {
"riak/riak-client": "to use the Riak storage",
"ext-couchbase": "to use the Couchbase storage"
},
"description": "Simple Key-Value Store Abstraction Layer that maps to PHP objects, allowing for many backends.",
"license": "MIT",
"autoload": {
"psr-0": {
"Doctrine\\KeyValueStore\\": "lib/"
}
}
}