drowningelysium/laravel-socialite-congressus

An oAuth2 implementation to allow authentication through Congressus.

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/drowningelysium/laravel-socialite-congressus

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

This package is auto-updated.

Last update: 2025-10-29 03:39:28 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',
    ],
    // ...
];