-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
38 lines (38 loc) · 1.19 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
{
"name": "rediscluster/rediscluster",
"type": "library",
"description": "a php interface to a Cluster of Redis key-value store",
"keywords": ["rediscluster", "redis", "nosql", "cluster", "key value", "data store", "database", "sharding", "phpredis"],
"homepage": "https://github.com/salimane/rediscluster-php",
"license": "MIT",
"authors":[
{
"name": "Salimane Adjao Moustapha",
"email": "[email protected]",
"homepage": "http://salimane.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/salimane/rediscluster-php/issues",
"source": "https://github.com/salimane/rediscluster-php"
},
"require":{
"php": ">=5.3.0",
"ext-pcntl": "*",
"ext-redis": "*"
},
"suggest": {
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker."
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"version": "0.5.3",
"autoload": {
"psr-0": {
"RedisCluster": "src/"
}
}
}