-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.82 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "romdim/yii2-cms",
"description": "Yii 2 CMS",
"keywords": ["yii2", "cms", "practical-b"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Romanos Tsouroplis",
"email": "rom-dim@hotmail.com",
"homepage": "http://romdim.github.io/"
}
],
"support": {
"issues": "https://github.com/romdim/yii2-cms/issues/issues?state=open",
"source": "https://github.com/romdim/yii2-cms/"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0",
"yiisoft/yii2-bootstrap": "~2.0",
"yiisoft/yii2-swiftmailer": "~2.0",
"dektrium/yii2-user": "~0.9",
"dektrium/yii2-rbac": "~0.1",
"dmstr/yii2-migrate-command": "~0.2",
"yiidoc/yii2-redactor": "~2.0",
"kartik-v/yii2-widget-datepicker": "~1.3",
"kartik-v/yii2-datecontrol": "~1.9",
"kartik-v/yii2-checkbox-x": "~1.0"
},
"require-dev": {
"yiisoft/yii2-codeception": "~2.0",
"yiisoft/yii2-debug": "~2.0",
"yiisoft/yii2-gii": "~2.0",
"yiisoft/yii2-faker": "~2.0"
},
"config": {
"process-timeout": 1800
},
"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"
}
}
}