forked from dungmediabridge/app-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.24 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": "terabytesoft/app-basic",
"type": "library",
"description": "Yii 3.0 Web Application Basic",
"keywords": [
"application",
"basic",
"web",
"yii"
],
"homepage": "https://github.com/terabytesoft/app-basic",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/terabytesoft/app-basic/issues",
"source": "https://github.com/terabytesoft/app-basic",
"forum": "https://discuss.cjtterabyte.com"
},
"authors": [
{
"name": "Wilmer Arambula",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2",
"nyholm/psr7": "^1.0",
"terabytesoft/alert": "^0.0.1@dev",
"yiisoft/yii-bootstrap4": "^3.0@dev",
"yiisoft/yii-captcha": "^3.0@dev",
"yiisoft/yii-console": "^3.0@dev",
"yiisoft/yii-jquery": "^3.0@dev",
"yiisoft/yii-swiftmailer": "^3.0@dev"
},
"require-dev": {
"codeception/codeception": "^3.0",
"dms/phpunit-arraysubset-asserts": "^0.1.0",
"foxy/foxy": "^1.0",
"hiqdev/composer-config-plugin": "^1.0@dev",
"yiisoft/cache": "dev-master#b10f733",
"yiisoft/di": "^3.0@dev",
"yiisoft/log": "^3.0@dev",
"yiisoft/log-target-file": "^3.0@dev",
"yiisoft/rbac": "dev-master#2f0194e",
"yiisoft/view": "^3.0@dev",
"yiisoft/yii-debug": "^3.0@dev",
"yiisoft/yii-core": "dev-master#ac80ebf",
"yiisoft/yii-web": "dev-master#4d5d840"
},
"autoload": {
"psr-4": {"TerabyteSoft\\App\\Basic\\": "src"}
},
"autoload-dev": {
"psr-4": {"TerabyteSoft\\App\\Basic\\Tests\\": "tests"}
},
"extra": {
"branch-alias": {
"dev-master": "0.0.1-dev"
},
"config-plugin": {
"defines": "config/defines.php",
"params": [
"config/appbasic.php",
"config/params.php"
],
"common": "config/common.php",
"web": "config/web.php",
"codecept": [
"$defines",
"$params",
"$common",
"$web",
"config/tests.php"
]
}
}
}