PHPackages                             zeriontech/socialite-zerion - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. zeriontech/socialite-zerion

AbandonedArchivedLibrary[Authentication &amp; Authorization](/categories/authentication)

zeriontech/socialite-zerion
===========================

Zerion OAuth2 Provider for Laravel Socialite

v5.0.3(8y ago)283236MITPHPPHP ^5.6 || ^7.0

Since Dec 21Pushed 8y ago1 watchersCompare

[ Source](https://github.com/zeriontech/socialite-zerion)[ Packagist](https://packagist.org/packages/zeriontech/socialite-zerion)[ RSS](/packages/zeriontech-socialite-zerion/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (1)Versions (10)Used By (0)

Zerion OAuth2 Provider for Laravel Socialite
============================================

[](#zerion-oauth2-provider-for-laravel-socialite)

### 1. Installation

[](#1-installation)

`composer require zeriontech/socialite-zerion`

### 2. Service Provider

[](#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:

```
'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](http://laravel.com/docs/5.2/authentication#social-authentication).

### 3. Add the Event and Listeners

[](#3-add-the-event-and-listeners)

- Add `SocialiteProviders\Manager\SocialiteWasCalled::class` event to your `listen[]` array in `/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 `ZerionTech\SocialiteProviders\Zerion\ZerionExtendSocialite@handle`.
- Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.

For example:

```
/**
 * 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

[](#4-services-array-and-env)

Add to `config/services.php`:

```
'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!**

```
// 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

```

###  Health Score

32

↑

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~7 days

Recently: every ~14 days

Total

9

Last Release

3009d ago

Major Versions

v4.0.1 → v5.0.12017-12-21

### Community

Maintainers

![](https://www.gravatar.com/avatar/333f248ad68eb216fa76f9eb823cf2e20534cd63482d6658861fba06f44ab26f?d=identicon)[lonesta](/maintainers/lonesta)

---

Top Contributors

[![lonesta](https://avatars.githubusercontent.com/u/7000388?v=4)](https://github.com/lonesta "lonesta (8 commits)")

### Embed Badge

![Health badge](/badges/zeriontech-socialite-zerion/health.svg)

```
[![Health](https://phpackages.com/badges/zeriontech-socialite-zerion/health.svg)](https://phpackages.com/packages/zeriontech-socialite-zerion)
```

###  Alternatives

[socialiteproviders/microsoft

Microsoft OAuth2 Provider for Laravel Socialite

326.1M13](/packages/socialiteproviders-microsoft)[socialiteproviders/apple

Apple OAuth2 Provider for Laravel Socialite

618.4M8](/packages/socialiteproviders-apple)[socialiteproviders/instagram

Instagram OAuth2 Provider for Laravel Socialite

421.9M5](/packages/socialiteproviders-instagram)[socialiteproviders/microsoft-azure

Microsoft Azure OAuth2 Provider for Laravel Socialite

556.0M19](/packages/socialiteproviders-microsoft-azure)[socialiteproviders/laravelpassport

LaravelPassport OAuth2 Provider for Laravel Socialite

621.3M7](/packages/socialiteproviders-laravelpassport)[socialiteproviders/discord

Discord OAuth2 Provider for Laravel Socialite

422.0M17](/packages/socialiteproviders-discord)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
