-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "spookygames/flarum-ext-auth-keycloak",
"description": "Allow users to sign in/up/out with Keycloak.",
"type": "flarum-extension",
"keywords": ["authentication"],
"license": "MIT",
"authors": [
{
"name": "Spooky Games",
"email": "we@spooky.games"
}
],
"support": {
"issues": "https://github.com/spookygames/flarum-ext-auth-keycloak/issues",
"source": "https://github.com/spookygames/flarum-ext-auth-keycloak"
},
"require": {
"flarum/core": "^1.3",
"stevenmaguire/oauth2-keycloak": "4.0.0"
},
"autoload": {
"psr-4": {
"SpookyGames\\Auth\\Keycloak\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Keycloak Login",
"icon": {
"name": "sign-in",
"backgroundColor": "#D13E32",
"color": "#fff"
},
"optional-dependencies": [
"flarum/nicknames"
]
}
}
}