-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 1013 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": "arslanim/flarum-ext-auth-wp",
"description": "Allow users to log in with WP account.",
"type": "flarum-extension",
"keywords": ["authentication"],
"license": "MIT",
"authors": [
{
"name": "Arslan Imamutdinov",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/arslanim/flarum-ext-auth-wp/issues",
"source": "https://github.com/arslanim/flarum-ext-auth-wp"
},
"require": {
"flarum/core": "^0.1.0-beta.5",
"league/oauth1-client": "^1.6"
},
"extra": {
"flarum-extension": {
"title": "WP login",
"icon": {
"name": "wordpress",
"backgroundColor": "#01a6cb",
"color": "#ffffff"
}
}
},
"autoload": {
"psr-4": {
"Arslanim\\Auth\\Wordpress\\": "src/"
}
}
}