PHPackages                             convoflo/socialite-provider - 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. convoflo/socialite-provider

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

convoflo/socialite-provider
===========================

Convoflo OAuth2 Provider for Laravel Socialite

1.0.0(9mo ago)014PHPPHP ^8.0

Since Aug 7Pushed 9mo agoCompare

[ Source](https://github.com/convoflo/socialite-provider)[ Packagist](https://packagist.org/packages/convoflo/socialite-provider)[ RSS](/packages/convoflo-socialite-provider/feed)WikiDiscussions main Synced 1mo ago

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

Convoflo
========

[](#convoflo)

```
composer require convoflo/socialite-provider
```

Installation &amp; Basic Usage
------------------------------

[](#installation--basic-usage)

Please see the [Base Installation Guide](https://socialiteproviders.com/usage/), then follow the provider specific instructions below.

### Prepare OAuth provider &amp; client in Convoflo

[](#prepare-oauth-provider--client-in-convoflo)

Send your callback URL to  and Convoflo will provide you with a client ID and client secret

### Add configuration to `config/services.php`

[](#add-configuration-to-configservicesphp)

```
'convoflo' => [
    'client_id' => env('CONVOFLO_CLIENT_ID'),
    'client_secret' => env('CONVOFLO_CLIENT_SECRET'),
    'redirect' => env('CONVOFLO_REDIRECT_URL'),
],
```

### Add provider event listener

[](#add-provider-event-listener)

#### Laravel 11+

[](#laravel-11)

In Laravel 11, the default `EventServiceProvider` provider was removed. Instead, add the listener using the `listen` method on the `Event` facade, in your `AppServiceProvider` `boot` method.

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

```
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
    $event->extendSocialite('convoflo', \Convoflo\SocialiteProvider\Provider::class);
});
```

Laravel 10 or below Configure the package's listener to listen for `SocialiteWasCalled` events. Add the event to your `listen[]` array in `app/Providers/EventServiceProvider`. See the [Base Installation Guide](https://socialiteproviders.com/usage/) for detailed instructions.

```
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        // ... other providers
        \Convoflo\SocialiteProvider\ConvofloExtendSocialite::class.'@handle',
    ],
];
```

### Usage

[](#usage)

You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):

```
return Socialite::driver('convoflo')->redirect();
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance61

Regular maintenance activity

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

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

275d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/571c08e3cb4fb214015848023c9bfd3d9388c3fd967500bb99c16bba9c96a4a3?d=identicon)[alexdemers](/maintainers/alexdemers)

---

Top Contributors

[![alexdemers](https://avatars.githubusercontent.com/u/1834344?v=4)](https://github.com/alexdemers "alexdemers (3 commits)")

### Embed Badge

![Health badge](/badges/convoflo-socialite-provider/health.svg)

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

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