-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.38 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
{
"name": "yuncms/yii2-admin",
"description": "The admin module for the yuncms.",
"keywords": [
"yii",
"yii2",
"yii2-extension",
"yuncms",
"admin"
],
"type": "yii2-extension",
"license": "MIT",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.6",
"yiisoft/yii2-queue": "~2.0.0",
"yii2tech/ar-position": "~1.0",
"xutl/yii2-inspinia-widget": "~1.0",
"xutl/yii2-fontawesome-asset": "~2.0.0",
"yuncms/yuncms-core": "~2.0.0"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0",
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-faker": "~2.0.0",
"codeception/base": "^2.2.3",
"codeception/verify": "~0.3.1",
"codeception/specify": "~0.4.3"
},
"autoload": {
"psr-4": {
"yuncms\\admin\\": ""
}
},
"extra": {
"yuncms": {
"name": "admin",
"i18n": {
"class": "yii\\i18n\\PhpMessageSource",
"sourceLanguage": "en-US",
"basePath": "@yuncms/admin/messages"
},
"cron": {
},
"migrationNamespace": "yuncms\\admin\\migrations",
"backend": {
"class": "yuncms\\admin\\Module"
}
},
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
]
}