forked from sizeg/yii2-jwt
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.11 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "bizley/jwt",
"description": "JWT integration for Yii 2",
"type": "yii2-extension",
"keywords": ["yii2", "jwt", "jws", "token", "authentication"],
"license": "Apache-2.0",
"authors": [
{
"name": "Paweł Bizley Brzozowski",
"email": "[email protected]"
},
{
"name": "Dmitriy Demin",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/bizley/yii2-jwt"
},
"require": {
"php": ">=8.1",
"lcobucci/jwt": "^5.0",
"yiisoft/yii2": ">=2.0.14 <2.1"
},
"require-dev": {
"infection/infection": "*",
"lcobucci/clock": "^3.0",
"phpstan/phpstan": "*",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"bizley\\jwt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"bizley\\tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"yiisoft/yii2-composer": true
}
}
}