-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
42 lines (42 loc) · 873 Bytes
/
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
{
"name": "nomiscz/flarum-ext-auth-wechat",
"description": "Allow users to log in with WeChat",
"keywords": [
"flarum",
"authentication",
"wechat"
],
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^1.0.0",
"laravel/helpers": "^v1.4.1",
"fof/components": "^1.0.0",
"nomiscz/oauth2-wechat": "^0.1.1"
},
"authors": [
{
"name": "NomisCZ",
"email": "nomiscz@outlook.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"NomisCZ\\WeChatAuth\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "NomisCZ WeChat Login",
"icon": {
"name": "fab fa-weixin",
"backgroundColor": "#51c332",
"color": "#fff"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/22888-wechat-auth"
}
}
}