forked from miladrahimi/php-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 742 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 742 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
31
32
33
34
35
36
37
{
"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": "info@miladrahimi.com"
}
],
"require": {
"php": ">=7.1",
"ext-openssl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"MiladRahimi\\Jwt\\": "src/",
"MiladRahimi\\Jwt\\Tests\\": "tests/"
}
}
}