PHPackages                             andrewnovikof/kinohodsocialiteserviceprovider - 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. andrewnovikof/kinohodsocialiteserviceprovider

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

andrewnovikof/kinohodsocialiteserviceprovider
=============================================

Kinohod SSO OAuth2 Provider for Laravel Socialite

1.1.2(8y ago)049MITPHPPHP ^5.6 || ^7.1

Since Oct 23Pushed 8y ago1 watchersCompare

[ Source](https://github.com/AndrewNovikof/kinohodSocialiteServiceProvider)[ Packagist](https://packagist.org/packages/andrewnovikof/kinohodsocialiteserviceprovider)[ RSS](/packages/andrewnovikof-kinohodsocialiteserviceprovider/feed)WikiDiscussions master Synced yesterday

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

Kinohod SSO OAuth2 Provider for Laravel Socialite
=================================================

[](#kinohod-sso-oauth2-provider-for-laravel-socialite)

### 1. Installation

[](#1-installation)

`composer require andrewnovikof/kinohodsocialiteserviceprovider`

### 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 `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:

```
/**
 * The event handler mappings for the application.
 *
 * @var array
 */
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        \AndrewNovikof\SocialiteProviders\Kinohod\KinohodExtendSocialite::class
    ],
];
```

### 4. Services Array and .env

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

Add to `config/services.php`:

```
'kinohod' => [
    'client_id' => env('KINOHOD_ID'),
    'client_secret' => env('KINOHOD_SECRET'),
    'redirect' => env('KINOHOD_REDIRECT'),
],
```

Append provider values to your `.env` file: **Note: Add both public and secret keys!**

```
// other values above
KINOHOD_ID=your_app_id_for_the_service
KINOHOD_SECRET=your_app_public_for_the_service
KINOHOD_REDIRECT=https://example.com/login

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

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 ~9 days

Total

2

Last Release

3113d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/22785281?v=4)[AndrewNovikoff](/maintainers/AndrewNovikoff)[@andrewnovikoff](https://github.com/andrewnovikoff)

### Embed Badge

![Health badge](/badges/andrewnovikof-kinohodsocialiteserviceprovider/health.svg)

```
[![Health](https://phpackages.com/badges/andrewnovikof-kinohodsocialiteserviceprovider/health.svg)](https://phpackages.com/packages/andrewnovikof-kinohodsocialiteserviceprovider)
```

###  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)
