-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
37 lines (37 loc) · 991 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
{
"name": "stanleysong/flarum-ext-auth-wechat",
"description": "Allow users to log in with Wechat.",
"type": "flarum-extension",
"keywords": ["authentication"],
"license": "MIT",
"authors": [
{
"name": "Stanley Song",
"email": "sxhuan@gmail.com"
}
],
"support": {
"issues": "https://github.com/StanleySong/flarum-ext-auth-wechat/issues",
"source": "https://github.com/StanleySong/flarum-ext-auth-wechat"
},
"require": {
"flarum/core": "^0.1.0-beta.6",
"henter/wechat-oauth": "dev-master"
},
"autoload": {
"psr-4": {
"StanleySong\\Auth\\Wechat\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Wechat Login",
"icon": {
"name": "wechat",
"backgroundColor": "#22aa00",
"color": "#fff"
}
}
},
"minimum-stability": "dev"
}