forked from monospice/laravel-redis-sentinel-drivers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.55 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
{
"name": "monospice/laravel-redis-sentinel-drivers",
"description": "Redis Sentinel integration for Laravel and Lumen.",
"keywords": ["redis", "sentinel", "laravel", "lumen"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cy Rossignol",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/streamingsystems/spicy-identifiers.git"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/cache": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/contracts": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/queue": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/redis": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/session": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"monospice/spicy-identifiers": "^1.0.x-dev",
"predis/predis": "^1.1 || ^2.0"
},
"autoload": {
"psr-4": {
"Monospice\\LaravelRedisSentinel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Monospice\\LaravelRedisSentinel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Monospice\\LaravelRedisSentinel\\RedisSentinelServiceProvider"
]
}
}
}