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-12-16 15:02:52 |
Package Statistics | |
---|---|
Total Downloads: | 2,478 |
Monthly Downloads: | 6 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
Socialite Sabiá provider is a Laravel Socialite extension for OAuth authentication services with Sabiá.
Socialite Sabiá provider is open-sourced software licensed under the MIT license
To get started with our provider, add to your composer.json
file as a dependency:
composer require lais/socialite-sabia-provider
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',
],