-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.49 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.49 KB
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
{
"name": "extpoint/project-boilerplate",
"description": "Example Yii2 + Comet + Redux",
"keywords": ["extpoint", "example", "yii2", "comet", "jii", "react", "redux", "chat"],
"homepage": "http://extpoint.com/",
"type": "project",
"license": "BSD-3-Clause",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": ">=2.0.11",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"bariew/yii2-module-migration-controller": "*",
"yiisoft/yii2-jui": "^2.0",
"kartik-v/yii2-widgets": "*",
"yiisoft/yii2-imagine": "^2.0",
"extpoint/yii2-core": "*",
"extpoint/yii2-megamenu": "*"
},
"require-dev": {
"yiisoft/yii2-debug": "*"
},
"config": {
"process-timeout": 1800,
"vendor-dir": "vendor"
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
],
"generateCookieValidationKey": [
"config/web.php"
]
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}