-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
112 lines (112 loc) · 3.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "skeeks/app-shop-smarty-animals",
"description": "Магазин на базе SkeekS CMS",
"keywords": ["framework", "cms", "skeeks", "sx", "app", "yii2"],
"homepage": "https://cms.skeeks.com",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://cms.skeeks.com",
"wiki": "https://cms.skeeks.com/docs",
"source": "https://git.skeeks.com/skeeks/cms-app"
},
"authors": [
{
"name": "Semenov Alexander",
"email": "semenov@skeeks.com"
}
],
"require": {
"skeeks/cms-basic-shop": "~1.0.0",
"skeeks/cms-vk-comments": "~1.0",
"skeeks/cms-ya-share": "~2.0",
"skeeks/cms-vk-community": "~1.0",
"skeeks/cms-authclient": "~2.0",
"skeeks/cms-external-links": "~1.0",
"skeeks/cms-ssh-console": "~1.1.0",
"skeeks/cms-instagram-widget": "~1.0",
"skeeks/yii2-template-smarty-asset": "1.1.5",
"yiisoft/yii2-debug": "*"
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"yii\\composer\\Installer::postInstall"
],
"post-install-cmd": [
"yii\\composer\\Installer::postInstall"
],
"post-update-cmd": [
"skeeks\\cms\\composer\\Installer::clearDirs",
"php yii cms/migrate --interactive=0",
"skeeks\\cms\\composer\\Installer::clearDirs",
"php yii rbac/init",
"php yii cmsAgent/init"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"console/runtime": "0777",
"common/runtime": "0777",
"frontend/runtime": "0777",
"frontend/web/assets": "0777",
"yii": "0755"
}
]
},
"yii\\composer\\Installer::postInstall": {
"generateCookieValidationKey": [
"frontend/config/main.php"
]
},
"skeeks\\cms\\composer\\Installer::clearDirs": {
"dirs": [
"console/runtime/cache",
"frontend/runtime/cache",
"frontend/web/assets"
]
},
"config-plugin": {
"web": [
"common/config/main.php",
"common/config/db.php",
"frontend/config/main.php"
],
"web-dev": [
"$web",
"?frontend/config/env/dev/main.php"
],
"web-prod": [
"$web",
"?frontend/config/env/prod/main.php"
],
"console": [
"common/config/main.php",
"common/config/db.php",
"console/config/main.php"
],
"console-dev": [
"$console",
"?console/config/env/dev/main.php"
],
"console-prod": [
"$console",
"?console/config/env/prod/main.php"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"process-timeout": 1800,
"discard-changes": true
}
}