forked from Tinywan/webman-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 849 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 849 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
38
{
"name": "tinywan/jwt",
"description": "JSON Web Token (JWT) for webman plugin",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.1||^8.0",
"ext-json": "*",
"workerman/webman-framework": "^1.2.1||^2.0",
"firebase/php-jwt": "^6.8||^7.0"
},
"autoload": {
"psr-4": {
"Tinywan\\Jwt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tinywan\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"workerman/webman": "^1.0",
"friendsofphp/php-cs-fixer": "^3.6",
"phpstan/phpstan": "^1.4",
"mockery/mockery": "^1.5",
"vimeo/psalm": "^4.22",
"topthink/think-orm": "^2.0",
"illuminate/database": "^8.83"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}