-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.32 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
{
"name": "yuncms/yii2-system",
"description": "The system extension for the yuncms",
"keywords": [
"yuncms",
"system",
"common"
],
"type": "yii2-extension",
"license": "MIT",
"require": {
"yiisoft/yii2": "~2.0.6",
"yiisoft/yii2-queue": "~2.0.0",
"yii2tech/ar-position": "~1.0",
"pheme/yii2-toggle-column": "*",
"yuncms/yii2-ueditor-widget": "~1.0",
"yuncms/yuncms-composer": "~2.0.0"
},
"require-dev": {
"phpunit/PHPUnit": "~6.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"yuncms\\system\\": "src"
}
},
"extra": {
"yuncms": {
"name": "system",
"i18n": {
"class": "yii\\i18n\\PhpMessageSource",
"sourceLanguage": "en-US",
"basePath": "@yuncms/system/messages"
},
"migrationNamespace": "yuncms\\system\\migrations",
"backend": {
"class": "yuncms\\system\\backend\\Module"
},
"frontend": {
"class": "yuncms\\system\\frontend\\Module"
}
},
"bootstrap": "yuncms\\system\\Bootstrap",
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
]
}