-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.21 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
{
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "~2.0.12",
"yiisoft/yii2-bootstrap": "~2.0.6",
"bower-asset/jquery": "1.12.*@stable",
"bower-asset/bootstrap": "3.3.7",
"yiisoft/yii2-jui": "~2.0.0",
"phpoffice/phpspreadsheet": "1.0.0-beta",
"kartik-v/yii2-widget-datepicker": "@dev"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.9",
"yiisoft/yii2-gii": "~2.0.5"
},
"config": {
"process-timeout": 1800,
"vendor-dir": "protected/vendor",
"fxp-asset": {
"npm-asset-library": "protected/vendor/npm",
"bower-asset-library": "protected/vendor/bower"
}
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"assets": "0777",
"protected/runtime": "0777",
"protected/yii": "0755"
}
],
"generateCookieValidationKey": [
"protected/config/web.php"
]
}
}
}