2017 © Pedro Peláez
 

library socialite-zerion

Zerion OAuth2 Provider for Laravel Socialite

image

zeriontech/socialite-zerion

Zerion OAuth2 Provider for Laravel Socialite

  • Thursday, February 15, 2018
  • by lonesta
  • Repository
  • 5 Watchers
  • 1 Stars
  • 23 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 10 Versions
  • 15 % Grown

The README.md

Zerion OAuth2 Provider for Laravel Socialite

1. Installation

composer require zeriontech/socialite-zerion, (*1)

2. Service Provider

  • Remove Laravel\Socialite\SocialiteServiceProvider from your providers[] array in config\app.php if you have added it already.
  • Add SocialiteProviders\Manager\ServiceProvider to your providers[] array in config\app.php.

For example:, (*2)

'providers' => [
    // a whole bunch of providers
    // remove 'Laravel\Socialite\SocialiteServiceProvider',
    SocialiteProviders\Manager\ServiceProvider::class, // add
];
  • 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 your listen[] array in <app_name>/Providers/EventServiceProvider., (*3)

  • Add your listeners (i.e. the ones from the providers) to the SocialiteProviders\Manager\SocialiteWasCalled[] that you just created., (*4)

  • The listener that you add for this provider is ZerionTech\SocialiteProviders\Zerion\ZerionExtendSocialite@handle., (*5)

  • Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers., (*6)

For example:, (*7)

/**
 * The event handler mappings for the application.
 *
 * @var array
 */
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        'ZerionTech\SocialiteProviders\Zerion\ZerionExtendSocialite@handle'
    ],
];

4. Services Array and .env

Add to config/services.php:, (*8)

'zerion' => [
    'client_id'     => env('ZERION_ID'),
    'client_secret' => env('ZERION_SECRET'),
    'redirect'      => env('ZERION_REDIRECT'),
],

Append provider values to your .env file: Note: Add both public and secret keys!, (*9)

// other values above
ZERION_ID=your_app_id_for_the_service
ZERION_SECRET=your_app_secret_for_the_service
ZERION_REDIRECT=https://example.com/login

The Versions

15/02 2018

dev-master

9999999-dev

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

15/02 2018

v5.0.3

5.0.3.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

13/02 2018

v5.0.2

5.0.2.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

21/12 2017

v5.0.1

5.0.1.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

21/12 2017

v4.0.1

4.0.1.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

21/12 2017

v5

5.0.0.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

21/12 2017

v4

4.0.0.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

21/12 2017

v3

3.0.0.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

21/12 2017

v2

2.0.0.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta

21/12 2017

1

1.0.0.0

Zerion OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Avatar lonesta