mirror of
https://github.com/doctrine/KeyValueStore.git
synced 2026-03-24 00:32:09 +01:00
33 lines
968 B
JSON
33 lines
968 B
JSON
{
|
|
"name": "doctrine/key-value-store",
|
|
"require": {
|
|
"php": "^5.5|^7.0",
|
|
"doctrine/common": "^2.4"
|
|
},
|
|
"require-dev": {
|
|
"datastax/php-driver": "^1.0",
|
|
"doctrine/couchdb": "^1.0.0-beta4",
|
|
"phpunit/phpunit": "^4.8|^5.0",
|
|
"aws/aws-sdk-php": "^3.8",
|
|
"php-riak/riak-client": "^1.0@alpha",
|
|
"mongodb/mongodb": "^1.4"
|
|
},
|
|
"suggest": {
|
|
"aws/aws-sdk-php": "to use the DynamoDB storage",
|
|
"doctrine/couchdb": "to use the CouchDB 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-4": {
|
|
"Doctrine\\KeyValueStore\\": "lib/Doctrine/KeyValueStore"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Doctrine\\Tests\\": "tests/Doctrine/Tests"
|
|
}
|
|
}
|
|
}
|