-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 999 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
{
"name": "blessing/flarum-oauth-client",
"description": "OAuth2 client of Blessing Skin for Flarum.",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Daniël Klabbers",
"email": "[email protected]",
"homepage": "https://hyn.me/"
},
{
"name": "Clark Winkelmann",
"email": "[email protected]",
"homepage": "https://clarkwinkelmann.com/"
}
],
"require": {
"flarum/core": "^1.2",
"league/oauth2-client": "^2.6.1"
},
"extra": {
"flarum-extension": {
"title": "Blessing Skin Login",
"category": "feature",
"icon": {
"name": "fas fa-tshirt",
"backgroundColor": "#6f42c1",
"color": "#fff"
}
}
},
"autoload": {
"psr-4": {
"Blessing\\Flarum\\": "src/"
}
}
}