forked from jzxyouok/yii2-payment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.11 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
{
"name": "yuncms/yii2-payment",
"description": "The Yii Payment module",
"keywords": [
"yii",
"yii2-payment",
"payment"
],
"type": "yii2-extension",
"license": "MIT",
"require": {
"yiisoft/yii2": "~2.0.6",
"yuncms/yii2-user": "~2.0",
"xutl/payment": "~1.0",
"endroid/qrcode": "~1.0",
"whichbrowser/parser": "~2.0"
},
"autoload": {
"psr-4": {
"yuncms\\payment\\": ""
}
},
"extra": {
"yuncms": {
"name": "payment",
"i18n": {
"class": "yii\\i18n\\PhpMessageSource",
"sourceLanguage": "en-US",
"basePath": "@yuncms/payment/messages"
},
"migrationNamespace": "yuncms\\payment\\migrations",
"backend": {
"class": "yuncms\\payment\\backend\\Module"
},
"frontend": {
"class": "yuncms\\payment\\frontend\\Module"
}
},
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
]
}