-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.31 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
{
"name": "yuncms/yuncms-core",
"description": "The core module for the yuncms.",
"keywords": [
"yii",
"yii2",
"yii2-extension",
"yuncms",
"core"
],
"type": "yii2-extension",
"license": "MIT",
"require": {
"php": ">=5.6.0",
"ext-intl": "*",
"yiisoft/yii2": "~2.0.13",
"yiisoft/yii2-bootstrap": "~2.0",
"yiisoft/yii2-swiftmailer": "~2.0",
"yiisoft/yii2-jui": "~2.0",
"yiisoft/yii2-queue": "~2.0.1",
"yiisoft/yii2-httpclient": "~2.0",
"yiisoft/yii2-redis": "~2.0",
"xutl/yii2-inspinia-widget": "~1.0",
"yuncms/yuncms-composer": "^2.0.2"
},
"require-dev": {
"codeception/base": "^2.2.3",
"codeception/verify": "^0.4.0"
},
"autoload": {
"psr-4": {
"yuncms\\core\\": ""
}
},
"extra": {
"yuncms": {
"id": "core",
"translate": {
"class": "yii\\i18n\\PhpMessageSource",
"sourceLanguage": "en-US",
"basePath": "@yuncms/core/messages"
},
"migrationNamespace": "yuncms\\core\\migrations",
"backend": {
"class": "yuncms\\core\\backend\\Module"
}
},
"bootstrap": "yuncms\\core\\Bootstrap",
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}