forked from yiisoft/yii-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
131 lines (131 loc) · 4.08 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
130
131
{
"name": "yiisoft/yii-core",
"type": "library",
"description": "Yii Framework Core",
"keywords": [
"yii",
"framework"
],
"homepage": "http://www.yiiframework.com/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Qiang Xue",
"email": "[email protected]",
"homepage": "http://www.yiiframework.com/",
"role": "Founder and project lead"
},
{
"name": "Alexander Makarov",
"email": "[email protected]",
"homepage": "http://rmcreative.ru/",
"role": "Core framework development"
},
{
"name": "Maurizio Domba",
"homepage": "http://mdomba.info/",
"role": "Core framework development"
},
{
"name": "Carsten Brandt",
"email": "[email protected]",
"homepage": "http://cebe.cc/",
"role": "Core framework development"
},
{
"name": "Timur Ruziev",
"email": "[email protected]",
"homepage": "http://resurtm.com/",
"role": "Core framework development"
},
{
"name": "Paul Klimov",
"email": "[email protected]",
"role": "Core framework development"
},
{
"name": "Dmitry Naumenko",
"email": "[email protected]",
"role": "Core framework development"
},
{
"name": "Boudewijn Vahrmeijer",
"email": "[email protected]",
"homepage": "http://dynasource.eu",
"role": "Core framework development"
}
],
"support": {
"source": "https://github.com/yiisoft/yii-core",
"issues": "https://github.com/yiisoft/yii-core/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii"
},
"minimum-stability": "dev",
"require": {
"php": ">=7.1.0",
"ext-mbstring": "*",
"ext-ctype": "*",
"lib-pcre": "*",
"yiisoft/arrays": "^3.0@dev",
"yiisoft/strings": "^3.0@dev",
"psr/log-implementation": "^1.0",
"psr/container-implementation": "^1.0",
"psr/simple-cache-implementation": "^1.0",
"ext-json": "*"
},
"require-dev": {
"yiisoft/di": "^3.0@dev",
"yiisoft/log": "^3.0@dev",
"yiisoft/view": "^3.0@dev",
"yiisoft/rbac": "^3.0@dev",
"yiisoft/cache": "^3.0@dev",
"yiisoft/db": "^3.0@dev",
"yiisoft/db-mysql": "^3.0@dev",
"yiisoft/db-sqlite": "^3.0@dev",
"yiisoft/yii-console": "^3.0@dev",
"yiisoft/yii-web": "^3.0@dev",
"yiisoft/active-record": "^3.0@dev",
"ezyang/htmlpurifier": "^4.6",
"phpunit/phpunit": "^7.2",
"hiqdev/composer-config-plugin": "^1.0@dev"
},
"suggest": {
"yiisoft/di": "DI container implementation",
"yiisoft/log": "Logging implementation",
"yiisoft/cache": "Caching implementation",
"ezyang/htmlpurifier": "Version '^4.6' is required at 'yii\\helpers\\HtmlPurifier' and for 'html' data format support (e.g. 'yii\\i18n\\Formatter:asHtml()')",
"yiisoft/db": "Required for i18n DbMessageSource",
"ext-intl": "Required for advanced i18n"
},
"conflict": {
"yiisoft/yii2": "*",
"yiisoft/yii2-dev": "*"
},
"autoload": {
"psr-4": {
"yii\\": "src",
"yii\\tests\\": "tests"
}
},
"autoload-dev": {
"psr-4": {
"yii\\build\\": "build"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"config-plugin": {
"defines": "config/defines.php",
"params": "config/params.php",
"common": "config/common.php",
"console": "$common",
"web": "$common",
"build": ["$console", "config/build.php"],
"tests": ["$console", "config/tests.php"]
}
}
}