-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
41 lines (41 loc) · 880 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
{
"name": "miladrahimi/php-jwt",
"description": "A PHP implementation of JWT (JSON Web Token) generator, parser, verifier, and validator",
"keywords": [
"JWT",
"JSON Web Token",
"Token",
"Parser",
"Encoder",
"Decoder",
"Verifier",
"Validator"
],
"homepage": "https://github.com/miladrahimi/php-jwt",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Milad Rahimi",
"email": "[email protected]",
"homepage": "https://miladrahimi.com"
}
],
"require": {
"php": ">=7.4",
"ext-openssl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7|^8|^9"
},
"suggest": {
"ext-sodium": "Sodium extension is required for EdDSA algortihms"
},
"autoload": {
"psr-4": {
"MiladRahimi\\Jwt\\": "src/",
"MiladRahimi\\Jwt\\Tests\\": "tests/"
}
}
}