-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
44 lines (44 loc) · 1.16 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
{
"name": "sametsahindogan/laravel-jwtredis",
"description": "This package allows JWT-authenticated users to be stored and management in Redis with their roles, permissions, statuses and anything you want.",
"keywords": [
"laravel",
"permission",
"permissions",
"roles",
"redis",
"cache",
"authentication",
"authorization"
],
"type": "library",
"require": {
"php": ">=7.2.5",
"tymon/jwt-auth": "^1.0.2",
"spatie/laravel-permission": "^4.0",
"sametsahindogan/response-object-creator": "1.0.2"
},
"license": "MIT",
"authors": [
{
"name": "sametsahindogan",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Sametsahindogan\\JWTRedis\\": "src/"
}
},
"extra": {
"laravel": {
"aliases": {
"RedisCache": "Sametsahindogan\\JWTRedis\\Facades\\RedisCache"
},
"providers": [
"Sametsahindogan\\JWTRedis\\JWTRedisServiceProvider"
]
}
}
}