-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.17 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
{
"name": "flownative/redis-sentinel",
"type": "neos-package",
"description": "Flow Redis cache backend with Sentinel support",
"license": "MIT",
"authors": [
{
"name": "Robert Lemke",
"email": "[email protected]"
},
{
"name": "Neos Team",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"neos/flow": "^7.0 || ^8.0 || ^9.0",
"neos/cache": "^7.0 || ^8.0 || ^9.0",
"ext-zlib": "*",
"predis/predis": "^2.0",
"php": "8.1.* || 8.2.* || 8.3.*"
},
"require-dev": {
"mikey179/vfsstream": "~1.6",
"phpunit/phpunit": "^8.5.29 || ^9.5"
},
"autoload": {
"psr-4": {
"Flownative\\RedisSentinel\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Flownative\\RedisSentinel\\Tests\\": "Tests"
}
},
"extra": {
"neos": {
"package-key": "Flownative.RedisSentinel"
}
},
"config": {
"allow-plugins": {
"neos/composer-plugin": true
}
}
}