Download the PHP package andrewnovikof/kinohodsocialiteserviceprovider without Composer
On this page you can find all versions of the php package andrewnovikof/kinohodsocialiteserviceprovider. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download andrewnovikof/kinohodsocialiteserviceprovider
More information about andrewnovikof/kinohodsocialiteserviceprovider
Files in andrewnovikof/kinohodsocialiteserviceprovider
Package kinohodsocialiteserviceprovider
Short Description Kinohod SSO OAuth2 Provider for Laravel Socialite
License MIT
Informations about the package kinohodsocialiteserviceprovider
Kinohod SSO OAuth2 Provider for Laravel Socialite
1. Installation
composer require andrewnovikof/kinohodsocialiteserviceprovider
2. Service Provider
- Remove
Laravel\Socialite\SocialiteServiceProvider
from yourproviders[]
array inconfig\app.php
if you have added it already. - Add
SocialiteProviders\Manager\ServiceProvider
to yourproviders[]
array inconfig\app.php
.
For example:
- Note: If you would like to use the Socialite Facade, you need to install it.
3. Add the Event and Listeners
-
Add
SocialiteProviders\Manager\SocialiteWasCalled::class
event to yourlisten[]
array in<app_name>/Providers/EventServiceProvider
. -
Add your listeners (i.e. the ones from the providers) to the
SocialiteProviders\Manager\SocialiteWasCalled[]
that you just created. -
The listener that you add for this provider is
AndrewNovikof\SocialiteProviders\Kinohod\KinohodExtendSocialite::class
. - Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.
For example:
4. Services Array and .env
Add to config/services.php
:
Append provider values to your .env
file:
Note: Add both public and secret keys!