forked from firebase/php-jwt
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
34 lines (34 loc) · 877 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
{
"name": "fproject/php-jwt",
"description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Support several key types including JWK.",
"homepage": "https://github.com/fproject/php-jwt",
"authors": [
{
"name": "Neuman Vong",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Anant Narayanan",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Bui Sy Nguyen",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "BSD-3-Clause",
"require": {
"php": ">=5.4.0"
},
"autoload": {
"psr-4": {
"Firebase\\JWT\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "4.8.36"
}
}