-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
129 lines (128 loc) · 3.9 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "yupe/yupe",
"description": "Yupe is simple and lightweight CMF for web-development, built on top of Yii 1.x",
"keywords": ["yupe", "yii", "web", "cms", "cmf", "shop", "ecommerce"],
"homepage": "http://yupe.ru",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrey Opeykin",
"email": "aopeykin@yandex.ru",
"homepage": "http://amylabs.ru",
"role": "Developer"
},
{
"name": "Nickolay Sedov",
"email": "yamikspark@gmail.com",
"homepage": "http://amylabs.ru",
"role": "Developer"
},
{
"name": "Maxim Timashov",
"email": "apexwire@amylabs.ru",
"homepage": "http://amylabs.ru",
"role": "Developer"
},
{
"name": "Plaksunov Yuri",
"homepage": "http://amylabs.ru",
"role": "Developer"
},
{
"name": "Oleg Filimonov",
"email": "olegsabian@gmail.com",
"homepage": "http://amylabs.ru",
"role": "Developer"
}
],
"support": {
"email": "support@yupe.ru",
"issues": "https://github.com/yupe/yupe/issues",
"forum": "http://talk.yupe.ru/",
"source": "https://github.com/yupe/yupe/",
"docs": "http://docs.yupe.ru/"
},
"require": {
"php": ">=5.4",
"yiisoft/yii": "1.1.17",
"clevertech/yii-booster": "4.*",
"yiiext/nested-set-behavior": "dev-master",
"yiiext/imperavi-redactor-widget": "dev-master",
"zhuravljov/yii2-debug": "1.4.*",
"phpmailer/phpmailer": "5.2.*",
"yiiext/taggable-behavior": "1.5.*",
"nodge/yii-eauth": "dev-master",
"imagine/imagine": "0.6.*",
"symfony/event-dispatcher": "3.*",
"twig/twig": "1.*",
"yiiext/twig-renderer": "1.1.*",
"2amigos/transliterator-helper": "dev-master",
"yiiext/migrate-command": "dev-master",
"samdark/sitemap": "2.0.*",
"ckeditor/ckeditor": "4.*"
},
"repositories": {
"taggable": {
"type": "package",
"package": {
"name": "yiiext/taggable-behavior",
"version": "1.5.1",
"source": {
"url": "https://github.com/yiiext/taggable-behavior.git",
"type": "git",
"reference": "b3713545565374522b3cb2b1fe066720466f0897"
}
}
},
"twig": {
"type": "package",
"package": {
"name": "yiiext/twig-renderer",
"version": "1.1.15",
"source": {
"type": "git",
"url": "https://github.com/yiiext/twig-renderer",
"reference": "v1.1.15"
}
}
}
},
"require-dev": {
"codeception/codeception": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"application\\": "protected/",
"yupe\\": "protected/modules/yupe/"
}
},
"scripts": {
"post-create-project-cmd": [
"yupe\\components\\Composer::postCreate"
],
"pre-install-cmd": [
"yupe\\components\\Composer::preInstall"
],
"post-install-cmd": [
"yupe\\components\\Composer::postInstall"
],
"pre-update-cmd": [
"yupe\\components\\Composer::preUpdate"
],
"post-update-cmd": [
"yupe\\components\\Composer::postUpdate"
]
},
"extra": {
"writable": [
"public/assets",
"public/uploads",
"protected/runtime",
"protected/config/db.php",
"protected/config/modules",
"protected/config/modulesBack"
]
}
}