forked from UniSharp/laravel-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.33 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": "clystnet/laravel-jwt",
"description": "A jwt package for reisssuing token purpose based on jwt-auth package. This is a fork of the unisharp/laravel-jwt package.",
"keywords": ["jwt", "reissue", "concurrency", "token", "laravel"],
"license": "MIT",
"authors": [
{
"name": "UniSharp Ltd.",
"email": "[email protected]"
},
{
"name": "Christopher Pratt",
"email": "[email protected]",
"homepage": "https://www.clystnet.com",
"role": "Developer"
}
],
"require": {
"php": "^7.1 | ^8.0",
"illuminate/support": "^5.6 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0",
"php-open-source-saver/jwt-auth": "^2.2 | ^2.4"
},
"require-dev": {
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.5 | ^9.0 | ^10.0 | ^11.0",
"codedungeon/phpunit-result-printer": "^0.32"
},
"autoload": {
"psr-4": {
"Clystnet\\JWT\\": "src/",
"Tests\\": "tests/"
},
"classmap": [
"src/"
]
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Clystnet\\JWT\\JWTServiceProvider"
],
"aliases": {
}
}
}
}