-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 907 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 907 Bytes
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
{
"name": "jerryhopper/easy-jwt-php",
"description":"easy jwt decoder using .well-known service discovery",
"keywords":["openid","oauth2","jwt","servicediscovery","service discovery"],
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Jerry Hopper",
"email": "hopper.jerry@gmail.com",
"homepage":"https://jerryhopper.com"
}
],
"homepage": "https://github.com/jerryhopper/easy-jwt-php",
"autoload": {
"psr-4": { "JerryHopper\\EasyJwt\\": "src/" }
},
"require-dev": {
"phpunit/phpunit": "6.*",
"fusionauth/fusionauth-client": "*"
},
"require": {
"php": "^7.2",
"jerryhopper/service-discovery-php": "^0.1.10",
"web-token/jwt-framework": "^2.0"
},
"scripts": {
"test": "phpunit --bootstrap vendor/autoload.php tests/decodeTest"
}
}