-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.22 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
{
"minimum-stability": "stable",
"require": {
"php": ">=7.0.0",
"ramsey/uuid": "^3.7",
"yiisoft/yii2": "~2.0.11",
"yiisoft/yii2-swiftmailer": "*",
"yiisoft/yii2-twig": "~2.0.0",
"creocoder/yii2-nested-sets": "^0.9.0",
"omgdef/yii2-multilingual-behavior": "~2.0",
"bower-asset/jquery-pjax": "*",
"bower-asset/codemirror": "^5.0.0",
"blueimp/jquery-file-upload": "^9.19",
"phpoffice/phpspreadsheet": "1.2.*"
},
"require-dev": {
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-debug": "~2.0.0",
"yiisoft/yii2-faker": "~2.0.0",
"codeception/codeception": "^2.3",
"codeception/specify": "^1.0",
"codeception/verify": "^1.0"
},
"config": {
"process-timeout": 1800
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
],
"generateCookieValidationKey": [
"config/web.php"
]
}
}
}