-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.63 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
{
"name": "terabytesoft/asset-bootbox",
"type": "library",
"description": "Yii3 Asset Bootbox",
"keywords": [
"yii3",
"asset",
"bootbox"
],
"homepage": "https://github.com/terabytesoft/asset-bootbox",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Wilmer Arambula",
"email": "wilmer.arambula@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2"
},
"require-dev": {
"codeception/codeception": "^3.0",
"foxy/foxy": "^1.0",
"hiqdev/composer-config-plugin": "^1.0@dev",
"nyholm/psr7": "^1.0",
"yiisoft/cache": "dev-master#b10f733",
"yiisoft/di": "^3.0@dev",
"yiisoft/log": "^3.0@dev",
"yiisoft/log-target-file": "^3.0@dev",
"yiisoft/view": "^3.0@dev",
"yiisoft/yii-bootstrap4": "^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\\Assets\\BootBox\\": "src/Assets"}
},
"autoload-dev": {
"psr-4": {"TerabyteSoft\\Assets\\BootBox\\Tests\\": "tests/src"}
},
"extra": {
"branch-alias": {
"dev-master": "0.0.1-dev"
},
"config-plugin": {
"params": "config/params.php",
"common": "config/common.php",
"web": "config/web.php",
"codecept": [
"$params",
"$common",
"$web",
"config/tests.php"
]
}
}
}