drowningelysium / laravel-socialite-congressus
An oAuth2 implementation to allow authentication through Congressus.
dev-master
2022-10-29 20:31 UTC
Requires
- php: ^7.2 | ^8.0
- ext-json: *
- laravel/socialite: ^v5.5
This package is auto-updated.
Last update: 2024-11-29 06:36:10 UTC
README
This package adds a Laravel Socialite provider for Congressus.
Configuration for config/services.php
return [ // ... 'congressus' => [ 'domain' => 'https://www.association.url', // The url of the association to connect to 'client_id' => env('CONGRESSUS_CLIENT_ID'), 'client_secret' => env('CONGRESSUS_CLIENT_SECRET'), 'redirect' => env('APP_URL').'/callback-url', ], // ... ];