This repository has been archived by the owner on Jun 9, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
73 lines (73 loc) · 1.98 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
{
"name": "yiisoft/yii-base-web",
"type": "library",
"description": "Yii Framework Web Application Base",
"keywords": [
"yii",
"framework",
"application"
],
"homepage": "https://github.com/yiisoft/yii-base-web",
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/yiisoft/yii-base-web",
"issues": "https://github.com/yiisoft/yii-base-web/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"yiisoft/yii-web": "^3.0@dev",
"yiisoft/di": "^3.0@dev",
"yiisoft/log": "^3.0@dev",
"yiisoft/cache": "^3.0@dev",
"yiisoft/active-record": "^3.0@dev",
"yiisoft/mailer": "dev-master",
"vlucas/phpdotenv": "^2.5",
"yiisoft/composer-config-plugin": "dev-master",
"nyholm/psr7": "^1.0"
},
"require-dev": {
"foxy/foxy": "^1.0",
"yiisoft/yii-debug": "dev-master",
"yiisoft/yii-gii": "dev-master",
"yiisoft/yii-bootstrap4": "dev-master",
"phpunit/phpunit": "^8.4"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"config-plugin": {
"params": "config/params.php",
"common": "config/common.php",
"web": "config/web.php"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"Yiisoft\\Yii\\Base\\Web\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\Yii\\Base\\Web\\Tests\\": "tests"
}
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"sort-packages": true
}
}