-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.42 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
{
"name": "gbcl/minecraft-oauth",
"description": "Log in to your Flarum forum with Minecraft",
"keywords": [
"flarum", "minecraft", "sso", "oauth", "login"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"source": "https://example.git/"
},
"require": {
"php": "^8.0",
"flarum/core": "^1.8.0",
"league/oauth2-client": "^2.7",
"fof/components": "^1.0",
"ext-json": "*",
"laravel/helpers": "^1.7",
"fof/oauth": "^1.6",
"stevenmaguire/oauth2-microsoft": "^2.2",
"firebase/php-jwt": "^6.10",
"ext-openssl": "*"
},
"authors": [
{
"name": "GBCLStudio",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"GBCLStudio\\OAuthMinecraft\\": "src/",
"Arffornia\\MinecraftOauth\\": "lib/MinecraftOAuth",
"Stevenmaguire\\OAuth2\\Client\\": "lib/MicrosoftOAuth"
}
},
"extra": {
"flarum-extension": {
"title": "Log In With Minecraft",
"category": "feature",
"icon": {
"name": "fas fa-sign-in-alt",
"backgroundColor": "#0072e3",
"color": "#fff"
}
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}