-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.18 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
{
"name": "werk365/jwtauthroles",
"description": "Made to use fusionauth users in Laravel using JWT. Possible to either use pem keys directly or use the jwks endpoint.",
"version": "1.2.3",
"license": "MIT",
"authors": [
{
"name": "Hergen Dillema",
"email": "[email protected]",
"homepage": "https://365werk.nl"
}
],
"homepage": "https://github.com/365werk/jwtauthroles",
"keywords": ["Laravel", "jwtauthroles"],
"require": {
"illuminate/support": "~5|~6|~7|~8|~9|~10",
"firebase/php-jwt": "^5.4",
"phpseclib/phpseclib": "^3.0.7"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"Werk365\\JwtAuthRoles\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Werk365\\JwtAuthRoles\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Werk365\\JwtAuthRoles\\JwtAuthRolesServiceProvider"
]
}
}
}