-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 902 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "babicaja/jwt-4laravel",
"description": "This is a Laravel package which provides all the means for a super easy JWT implementation",
"license": "MIT",
"keywords": ["laravel", "package", "laravel-5-package", "jwt", "jwt-auth-guard"],
"authors": [
{
"name": "Dejan Babić",
"email": "babicaja@gmail.com"
}
],
"require": {
"php": "^7.3",
"illuminate/support": "^5.8",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"nunomaduro/phpinsights": "^1.2",
"orchestra/testbench": "^3.5"
},
"autoload": {
"psr-4": {
"JWT4L\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\JWT4L\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"JWT4L\\Providers\\JWTServiceProvider"
],
"aliases": {
"Token": "JWT4L\\Facades\\Token"
}
}
}
}