LAIS-HUOL / socialite-sabia-provider by jeanjar

Socialite provider for Sabiá OAuth services.
2,433
4
2
Package Data
Maintainer Username: jeanjar
Maintainer Contact: guilhermeportela@gmx.com (Guilherme Portela)
Package Create Date: 2016-11-03
Package Last Update: 2023-12-19
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:06:04
Package Statistics
Total Downloads: 2,433
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 4
Total Watchers: 2
Total Forks: 1
Total Open Issues: 0

Socialite Sabiá provider

Introduction

Socialite Sabiá provider is a Laravel Socialite extension for OAuth authentication services with Sabiá.

License

Socialite Sabiá provider is open-sourced software licensed under the MIT license

Getting started

To get started with our provider, add to your composer.json file as a dependency:

composer require lais/socialite-sabia-provider

Configuration

After installing the provider library, register the LAIS\Socialite\Sabia\ServiceProvider in your config/app.php configuration file:

'providers' => [
    // Other service providers...

    LAIS\Socialite\Sabia\ServiceProvider::class,
],

You will also need to add credentials for the Sabiá OAuth services in order to your application utilize them. These credentials should be placed in your config/services.php configuration file, and should use the key sabia. For example:

'sabia' => [
    'client_id' => 'your-sabiá-app-id',
    'client_secret' => 'your-sabiá-app-secret',
    'redirect' => 'http://your-callback-url',
],