-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
41 lines (41 loc) · 1.22 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
{
"name": "m6web/redis-bundle",
"type": "symfony-bundle",
"description" : "bundle sf on top of predis",
"authors": [
{
"name": "Olivier Mansour",
"email": "[email protected]"
}
],
"config": {
"vendor-dir": "vendor",
"bin-dir": "bin"
},
"require": {
"php": ">=8.0",
"predis/predis": "^1.1.8",
"doctrine/cache": "~1.3",
"b1rdex/predis-compressible": "^1.0",
"symfony/cache": "~4.4 || ~5.0 || ~6.0",
"symfony/config": "~4.4 || ~5.0 || ~6.0",
"symfony/dependency-injection": "~4.4 || ~5.0 || ~6.0",
"symfony/http-foundation": "~4.4 || ~5.0 || ~6.0",
"symfony/http-kernel": "~4.4 || ~5.0 || ~6.0",
"symfony/yaml": "~4.4 || ~5.0 || ~6.0"
},
"require-dev": {
"m6web/php-cs-fixer-config": "2.0.*",
"atoum/atoum": "^4.0.3",
"atoum/stubs": "~2.5",
"m6web/redis-mock": "5.2.*",
"psr/cache": "~1.0",
"friendsofphp/php-cs-fixer": "^3.4"
},
"autoload": {
"psr-4": { "M6Web\\Bundle\\RedisBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "M6Web\\Bundle\\RedisBundle\\Tests\\": "src/Tests/" }
}
}