generated from inquid/php-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 1.85 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "inquid/yii-passport",
"type": "yii2-extension",
"description": "Making Laravel Passport library port for Yii.",
"homepage": "https://github.com/inquid/yii-passport",
"license": "MIT",
"authors": [
{
"name": "Inquid",
"email": "[email protected]"
},
{
"name": "Luis Gonzalez",
"email": "[email protected]"
},
{
"name": "Andreas Möller",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"fakerphp/faker": "^1.16",
"phpseclib/phpseclib": "^3.0",
"sizeg/yii2-jwt": "^2.0",
"yiisoft/yii2": "~2.0.43",
"ext-json": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15.0",
"ergebnis/license": "^1.1.0",
"ergebnis/php-cs-fixer-config": "~2.14.0",
"ergebnis/phpstan-rules": "~0.15.3",
"ergebnis/test-util": "^1.4.0",
"infection/infection": "~0.18.2",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "~0.12.98",
"phpstan/phpstan-deprecation-rules": "~0.12.6",
"phpstan/phpstan-phpunit": "~0.12.22",
"phpstan/phpstan-strict-rules": "~0.12.11",
"phpunit/phpunit": "~9.5.9",
"psalm/plugin-phpunit": "~0.16.1",
"vimeo/psalm": "^4.10.0"
},
"config": {
"platform": {
"php": "7.3.24"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
},
"autoload": {
"psr-4": {
"Inquid\\YiiPassport\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inquid\\YiiPassport\\Test\\": "test/"
}
},
"support": {
"issues": "https://github.com/inquid/yii-passport/issues",
"source": "https://github.com/inquid/yii-passport"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}