generated from yii2-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
128 lines (128 loc) · 3.76 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "yii2-extensions/user",
"type": "yii2-extension",
"description": "Flexible user registration and authentication module for Yii 2.0",
"keywords": [
"yii2",
"module",
"user management"
],
"license": "mit",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-filter": "*",
"npm-asset/fortawesome--fontawesome-free": "^6.4",
"oomphinc/composer-installers-extender": "^2.0",
"php-forge/helpers": "dev-main",
"php-forge/html": "dev-main",
"sjaakp/yii2-icon": "^1.0",
"yii2-extensions/authclient": "dev-main",
"yii2-extensions/bootstrap5": "dev-main",
"yii2-extensions/core-library": "dev-main",
"yii2-extensions/httpclient": "dev-main",
"yiisoft/security": "^1.0",
"yiisoft/yii2": "^2.2",
"yiisoft/yii2-symfonymailer": "^3.0"
},
"require-dev": {
"codeception/c3": "^2.9",
"codeception/codeception": "^5.0.0",
"codeception/lib-innerbrowser": "^4.0",
"codeception/module-asserts": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-phpbrowser": "*",
"codeception/module-yii2": "^1.1",
"codeception/stub": "^4.1",
"codeception/verify": "^3.0",
"php-forge/support": "dev-main",
"maglnet/composer-require-checker": "^4.6",
"symfony/browser-kit": "^6.3",
"symfony/process": "^6.3",
"yii2-extensions/app-basic": "dev-main",
"yii2-extensions/phpstan": "dev-main",
"yiisoft/config": "^1.4"
},
"autoload": {
"psr-4": {
"Yii\\User\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yii\\User\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"config-plugin": {
"web": "web/*.php",
"params": "params.php"
},
"config-plugin-options": {
"package-types": [
"composer-plugin",
"library",
"yii2-extension"
],
"source-directory": "config"
},
"config-plugin-environments": {
"tests": {
"common": "tests/common/*.php",
"console": [
"$common",
"tests/console/*.php"
],
"web": [
"$common",
"$yii2-bootstrap5",
"$yii2-core-library",
"web/*.php",
"tests/web/*.php"
],
"params": "params.php",
"params-console": "$params",
"params-web": [
"$params",
"tests/params-web.php"
]
}
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"./node_modules/{$name}/": [
"type:bower-asset",
"type:npm-asset"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"codeception/c3": true,
"yiisoft/config": true,
"composer/installers": true,
"oomphinc/composer-installers-extender": true
}
},
"scripts": {
"check-dependencies": "composer-require-checker",
"mutation": "roave-infection-static-analysis-plugin",
"phpstan": "phpstan",
"test": "phpunit"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}