forked from v3project/app-v3-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 loc) · 3.6 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
{
"name": "v3project/app-v3-shop",
"description": "Магазин V3Project на базе 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://github.com/v3project/app-v3-shop"
},
"authors": [
{
"name": "Semenov Alexander",
"email": "semenov@skeeks.com"
}
],
"require": {
"skeeks/cms": "^4.0",
"skeeks/cms-shop": "^2",
"skeeks/cms-agent": "^1.1",
"skeeks/cms-mailer": "^2",
"skeeks/cms-seo": "^2",
"skeeks/cms-search": "^2",
"skeeks/cms-db-dumper": "^1",
"skeeks/cms-module-form2": "^2",
"skeeks/cms-module-reviews2": "^2",
"skeeks/cms-vk-comments": "^1",
"skeeks/cms-ya-share": "^1",
"skeeks/cms-vk-community": "^1",
"skeeks/cms-assets-auto-compress": "^1.4",
"skeeks/yii2-template-smarty-asset": "1.1.5",
"skeeks/cms-external-links": "^1",
"skeeks/cms-log-db-target": "^1",
"kartik-v/yii2-widget-rating": "^1",
"yiisoft/yii2-debug": "*",
"skeeks/cms-instagram-widget": "^1",
"skeeks/cms-import-csv-content": "^1",
"skeeks/cms-import-csv-shop-content": "^1",
"skeeks/cms-export-csv-content": "^1",
"skeeks/cms-export-shop-yandex-market": "^1",
"skeeks/cms-shop-cart-steps-widget": "^1",
"skeeks/cms-shop-cart-items-widget": "^1",
"skeeks/cms-shop-checkout-simple-widget": "^1",
"skeeks/cms-shop-checkout-widget": "^1",
"skeeks/cms-shop-discount-coupon-widget": "^1",
"skeeks/cms-related-handler-extra": "^1",
"skeeks/cms-rp-view-widget": "^1",
"v3toys/skeeks": "^2.1"
},
"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",
"skeeks\\cms\\composer\\Installer::postInstall"
],
"post-update-cmd": [
"skeeks\\cms\\composer\\Installer::postUpdate",
"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"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"process-timeout": 1800,
"discard-changes": true
}
}