-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.41 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
{
"name": "yuncms/yii2-oauth2",
"description": "The Oauth2 Server extension for the Yii2 framework",
"keywords": [
"yii2",
"oauth2",
"oauth2-server"
],
"homepage": "https://github.com/yuncms/yii2-oauth2",
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/yuncms/yii2-oauth2/issues",
"source": "https://github.com/yuncms/yii2-oauth2"
},
"authors": [
{
"name": "Andrey Borodulin",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.6",
"jakeasmith/http_build_url": "~1.0",
"yuncms/yii2-user": "~2.0"
},
"autoload": {
"psr-4": {
"yuncms\\oauth2\\": ""
}
},
"extra": {
"yuncms": {
"name": "oauth2",
"i18n": {
"class": "yii\\i18n\\PhpMessageSource",
"sourceLanguage": "en-US",
"basePath": "@yuncms/oauth2/messages"
},
"migrationNamespace": "yuncms\\oauth2\\migrations",
"backend": {
"class": "yuncms\\oauth2\\backend\\Module"
},
"frontend": {
"class": "yuncms\\oauth2\\frontend\\Module"
}
},
"bootstrap": "yuncms\\oauth2\\Bootstrap",
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
]
}