-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
71 lines (71 loc) · 1.97 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
{
"name": "yii2mod/base",
"description": "Base application template for Yii2",
"keywords": [
"yii2mod",
"base",
"project template",
"yii2",
"framework",
"basic"
],
"homepage": "https://github.com/yii2mod/base/",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Dmitry Semenov",
"email": "[email protected]",
"homepage": "http://disem.org/"
},
{
"name": "Igor Chepurnoi",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0.0",
"yiisoft/yii2": "~2.0.14",
"yiisoft/yii2-bootstrap": "~2.0.0",
"yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
"yiisoft/yii2-redis": "~2.0.0",
"yii2mod/yii2-cms": "~1.9",
"yii2mod/yii2-user": "~2.1",
"yii2mod/yii2-rbac": "~2.2",
"yii2mod/yii2-cron-log": "~1.5",
"yii2mod/yii2-settings": "~2.4",
"yii2mod/yii2-scheduling": "~1.1",
"yii2mod/yii2-bootstrap-notify": "~1.2",
"yii2mod/yii2-editable": "~1.5",
"yii2tech/sitemap": "^1.0",
"yii2tech/admin": "~1.0"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0",
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-faker": "~2.0.0",
"friendsofphp/php-cs-fixer": "~2.0",
"codeception/base": "~2.3.0",
"codeception/verify": "~0.4.0",
"codeception/specify": "~0.4.6"
},
"config": {
"process-timeout": 1800,
"bin-dir": "bin",
"sort-packages": true,
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}