forked from snc/SncRedisBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 2.06 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "paysera/fork-snc-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": "henrik.westphal@gmail.com"
},
{
"name": "Community contributors",
"homepage": "https://github.com/snc/SncRedisBundle/contributors"
}
],
"require": {
"php": "^7.1.3",
"symfony/framework-bundle": "^3.4 || ^4.2 || ^5.0",
"symfony/http-foundation": "^3.4 || ^4.2 || ^5.0",
"symfony/yaml": "^3.4 || ^4.2 || ^5.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"doctrine/doctrine-bundle": "^1.11.2 || ^2.0",
"doctrine/orm": "^2.6.4",
"phpunit/phpunit": "^7.5",
"predis/predis": "^1.1",
"swiftmailer/swiftmailer": "^6.0",
"symfony/browser-kit": "^3.4 || ^4.2 || ^5.0",
"symfony/console": "^3.4 || ^4.2 || ^5.0",
"symfony/phpunit-bridge": "^4.3.5",
"symfony/dom-crawler": "^3.4 || ^4.2 || ^5.0",
"symfony/filesystem": "^3.4 || ^4.2 || ^5.0",
"symfony/profiler-pack": "^1.0",
"symfony/swiftmailer-bundle": "^2.0 || ^3.0",
"symfony/twig-bundle": "^3.4 || ^4.2 || ^5.0"
},
"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",
"symfony/proxy-manager-bridge": "If you want to lazy-load some services"
},
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Snc\\RedisBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}