https://github.com/iris-it/socialnorm-keycloak
Keycloak provider for socialnorm
https://github.com/iris-it/socialnorm-keycloak
keycloak-provider laravel-framework
Last synced: about 1 month ago
JSON representation
Keycloak provider for socialnorm
- Host: GitHub
- URL: https://github.com/iris-it/socialnorm-keycloak
- Owner: iris-it
- Created: 2016-10-05T15:46:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-05T21:44:52.000Z (over 9 years ago)
- Last Synced: 2025-03-29T04:18:35.770Z (about 1 year ago)
- Topics: keycloak-provider, laravel-framework
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Keycloak Provider for socialnorm
Custom provider for https://github.com/adamwathan/eloquent-oauth-l5
just add irisit/socialnorm-keycloak to your main install
More doc in comming, do no hesitate to contact me for more info or help !
```php
// config/eloquent-oauth.php
return [
'model' => User::class,
'table' => 'oauth_identities',
'providers' => [
'facebook' => [ /* ... */],
'google' => [ /* ... */],
'keycloak' => [
'client_id' => 'xxxxxxx',
'client_secret' => 'xxxxxxxx',
'redirect_uri' => 'http://localhost.dev/keycloak/callback',
'scope' => [],
'auth_server' => 'http://keycloak.dev/auth',
'auth_realm' => 'mygreatrealm',
],
],
];