-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
77 lines (77 loc) · 1.84 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
68
69
70
71
72
73
74
75
76
77
{
"name": "webonaute/phpredis-bundle",
"type": "symfony-bundle",
"description": "A PHPRedis bundle for Symfony4+ based on famous SncRedisBundle",
"keywords": [
"redis",
"nosql",
"symfony",
"bundle",
"symfony3",
"symfony4",
"doctrine",
"cache",
"caching",
"session",
"SwiftMailer",
"profiler",
"logger",
"phpredis",
"performance",
"predis"
],
"homepage": "https://github.com/Webonaute/PhpRedisBundle",
"license": "MIT",
"authors": [
{
"name": "Mathieu Delisle",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-redis": "*",
"symfony/cache": "^4.1",
"symfony/http-foundation": "^4.1",
"symfony/framework-bundle": "^4.1",
"symfony/yaml": "^4.1"
},
"conflict": {
"snc/redis-bundle": "*"
},
"require-dev": {
"symfony/monolog-bundle": "^3.0",
"doctrine/cache": "^1.0",
"symfony/console": "^4.1",
"symfony/phpunit-bridge": "^4.1",
"symfony/browser-kit": "^4.1",
"symfony/profiler-pack": "^1.0",
"symfony/twig-bundle": "^4.1",
"phpunit/phpunit": "^6.0|^7.0"
},
"suggest": {
"symfony/monolog-bundle": "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"
},
"autoload": {
"psr-4": {
"WebonautePhpredisBundle\\": "./src"
}
},
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"support": {
"email": "[email protected]",
"issue": "https://github.com/Webonaute/PhpRedisBundle/issues",
"source": "https://github.com/Webonaute/PhpRedisBundle"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}