Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iris-it/socialnorm-keycloak
Keycloak provider for socialnorm
https://github.com/iris-it/socialnorm-keycloak
keycloak-provider laravel-framework
Last synced: 25 days 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 (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-05T21:44:52.000Z (about 8 years ago)
- Last Synced: 2024-10-22T09:58:07.072Z (2 months ago)
- Topics: keycloak-provider, laravel-framework
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- 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',
],
],
];