-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
127 lines (127 loc) · 3.75 KB
/
composer.json
File metadata and controls
127 lines (127 loc) · 3.75 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
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
{
"name": "yupe/yupe",
"description": "Yupe is simple and lightweight CMF for web-development, built on top of Yii",
"keywords": ["yupe", "yii", "web", "cms", "cmf"],
"homepage": "http://yupe.ru",
"type": "cmf",
"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": "Anton Kucherov",
"homepage": "http://idexter.ru/",
"role": "Developer"
},
{
"name": "Maxim Timashov",
"email": "apexwire@gmail.com",
"role": "Developer"
},
{
"name": "Plaksunov Yuri",
"homepage": "http://amylabs.ru",
"role": "Developer"
},
{
"name": "Mihail Chemezov",
"homepage": "http://vk.com/m.chemezov",
"role": "Developer"
}
],
"support": {
"email": "team@yupe.ru",
"issues": "https://github.com/yupe/yupe/issues",
"forum": "http://yupe.ru/talk/",
"source": "https://github.com/yupe/yupe/"
},
"require": {
"php": ">=5.4",
"yiisoft/yii": ">=1.1.16",
"clevertech/yii-booster": "4.*",
"yiiext/nested-set-behavior": "dev-master",
"yiiext/imperavi-redactor-widget": "dev-master",
"zhuravljov/yii2-debug": "dev-master",
"phpmailer/phpmailer": "dev-master",
"yiiext/taggable-behavior": "1.5.*",
"nodge/yii-eauth": "dev-master",
"imagine/imagine": "v0.6.1",
"symfony/event-dispatcher": "2.*",
"twig/twig": "1.*",
"yiiext/twig-renderer": "1.1.*",
"guzzlehttp/guzzle": "5.0.*"
},
"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": "2.*"
},
"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"
]
}
}