forked from snc/SncRedisBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.11 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": "snc/redis-bundle",
"type": "symfony-bundle",
"description": "A Redis bundle for Symfony2",
"keywords": ["redis", "nosql", "symfony"],
"homepage": "https://github.com/snc/SncRedisBundle",
"license": "MIT",
"authors": [{
"name": "Henrik Westphal",
"email": "[email protected]"
},{
"name": "Community contributors",
"homepage": "https://github.com/snc/SncRedisBundle/contributors"
}],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": ">=2.1.0,<2.3-dev",
"symfony/yaml": ">=2.1.0,<2.3-dev"
},
"require-dev": {
"doctrine/common": ">=2.2",
"predis/predis": "0.8.*"
},
"suggest": {
"monolog/monolog": "If you want to use the monolog redis handler.",
"predis/predis": "If you want to use predis (currently only v0.8.x is supported)."
},
"autoload": {
"psr-0": { "Snc\\RedisBundle": "" }
},
"target-dir": "Snc/RedisBundle",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"minimum-stability": "dev"
}