-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 850 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
42
{
"name": "yzh52521/think-jwt",
"description": "JSON Web Token (JWT) for Thinkphp plugin",
"license": "MIT",
"authors": [
{
"name": "yuanzhihai",
"email": "[email protected]"
}
],
"homepage": "https://github.com/yzh52521/think-jwt",
"require": {
"php": ">=8.0.0",
"lcobucci/jwt": "^4.2.1 || ^5.0",
"lcobucci/clock": "^3.0",
"nesbot/carbon": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"yzh52521\\Jwt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yzh52521\\Jwt\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"think": {
"config":{
"jwt": "src/config/jwt.php"
}
}
},
"scripts": {
"test": "phpunit --prepend tests/bootstrap.php -c phpunit.xml --colors=always"
}
}