PHPackages                             payping/oauth2-payping-socialite-client - 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. payping/oauth2-payping-socialite-client

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

payping/oauth2-payping-socialite-client
=======================================

PayPing OAuth2 Provider for Laravel Socialite

v1.0(6y ago)03MITPHPPHP ^5.6 || ^7.0

Since Jun 24Pushed 6y ago1 watchersCompare

[ Source](https://github.com/payping/payping-oauth2-socialite-client)[ Packagist](https://packagist.org/packages/payping/oauth2-payping-socialite-client)[ RSS](/packages/payping-oauth2-payping-socialite-client/feed)WikiDiscussions master Synced today

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

payping-oauth2-socialite-client
===============================

[](#payping-oauth2-socialite-client)

1. Installation
---------------

[](#1-installation)

```
composer require payping/payping-oauth2-socialite-client

```

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 `php \SocialiteProviders\Manager\ServiceProvider::class` 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.

```

3. Event Listener
-----------------

[](#3-event-listener)

Add SocialiteProviders\\Manager\\SocialiteWasCalled event to your listen\[\] array in app/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 'SocialiteProviders\\PayPing\\PayPingExtendSocialite@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 => [
        // add your listeners (aka providers) here
        'SocialiteProviders\\PayPing\\PayPingExtendSocialite@handle',
    ],
];
```

4. Configuration setup
----------------------

[](#4-configuration-setup)

You will need to add an entry to the services configuration file so that after config files are cached for usage in production environment (Laravel command artisan config:cache) all config is still available. Add to config/services.php.

```
'payping' => [
    'client_id' => env('PAYPING_CLIENT_ID'),
    'client_secret' => env('PAYPING_SECRET_ID'),
    'redirect' => env('REDIRECT_URL')
],
```

5. Usage
--------

[](#5-usage)

Laravel docs on configuration You should now be able to use it like you would regularly use Socialite (assuming you have the facade installed):

```
return Socialite::with('Payping')->redirect();
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

2514d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/90d13e0dde0f6048333440cdfae655cab86cf34981e0953465d7e71c5b7b7d39?d=identicon)[payping](/maintainers/payping)

---

Top Contributors

[![farhad-lotfeali](https://avatars.githubusercontent.com/u/8584058?v=4)](https://github.com/farhad-lotfeali "farhad-lotfeali (2 commits)")

### Embed Badge

![Health badge](/badges/payping-oauth2-payping-socialite-client/health.svg)

```
[![Health](https://phpackages.com/badges/payping-oauth2-payping-socialite-client/health.svg)](https://phpackages.com/packages/payping-oauth2-payping-socialite-client)
```

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