drowningelysium/laravel-socialite-congressus

An oAuth2 implementation to allow authentication through Congressus.

dev-master 2022-10-29 20:31 UTC

This package is auto-updated.

Last update: 2024-04-29 04:54: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',
    ],
    // ...
];