forked from snc/SncRedisBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.26 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
{
"name": "snc/redis-bundle",
"type": "symfony-bundle",
"description": "A Redis bundle for Symfony",
"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.7 || ^3.0",
"symfony/yaml": "^2.7 || ^3.0"
},
"require-dev": {
"doctrine/cache": "1.*",
"predis/predis": "^1.0",
"symfony/console": "^2.7 || ^3.0",
"symfony/phpunit-bridge": "^2.7 || ^3.0",
"phpunit/phpunit": "4.8.*"
},
"suggest": {
"monolog/monolog": "If you want to use the monolog redis handler.",
"predis/predis": "If you want to use predis.",
"symfony/console": "If you want to use commands to interact with the redis database"
},
"autoload": {
"psr-4": { "Snc\\RedisBundle\\": "" }
},
"config": {
"bin-dir": "bin/"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}