forked from oilstone/redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 814 Bytes
/
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
{
"name": "oilstone/redis-cache",
"description": "Helper package for working with a Redis cache",
"homepage": "https://github.com/oilstone/redis-cache",
"license": "MIT",
"authors": [
{
"name": "Online Solutions",
"email": "support@onlinesolutionsltd.com"
}
],
"require": {
"php": ">=7.1.0",
"illuminate/support": "^5.5|^5.6|^5.7|^5.8|^6.0|^7.0",
"oilstone/global-classes": "^1.0",
"oilstone/logging": "^1.0",
"ext-redis": "*"
},
"autoload": {
"psr-4": {
"Oilstone\\RedisCache\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Oilstone\\RedisCache\\Integrations\\Laravel\\ServiceProvider"
]
}
}
}