forked from mariovalney/laravel-keycloak-web-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 987 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
39
40
41
{
"name": "lghs/laravel-keycloak-guard",
"description": "Simple Keycloak Guard to Laravel Web Routes",
"homepage": "https://github.com/Lghs/laravel-keycloak-guard",
"license": "MIT",
"keywords": [
"laravel",
"keycloak",
"jwt",
"authentication"
],
"authors": [
{
"name": "Duman Haydar",
"email": "[email protected]"
},
{
"name": "Mário Valney",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"guzzlehttp/guzzle": "^6.5|^7.0"
},
"autoload": {
"psr-4": {
"Lghs\\KeycloakGuard\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Lghs\\KeycloakGuard\\KeycloakServiceProvider"
],
"aliases": {
"Keycloak": "Lghs\\KeycloakGuard\\Facades\\Keycloak"
}
}
}
}