PHPackages                             socialiteproviders/streamlabs - 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. socialiteproviders/streamlabs

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

socialiteproviders/streamlabs
=============================

Streamlabs OAuth2 Provider for Laravel Socialite

4.2.0(3y ago)14.8k3MITPHPPHP ^7.4 || ^8.0

Since Aug 15Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/SocialiteProviders/Streamlabs)[ Packagist](https://packagist.org/packages/socialiteproviders/streamlabs)[ RSS](/packages/socialiteproviders-streamlabs/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (6)Used By (0)

Streamlabs
==========

[](#streamlabs)

```
composer require socialiteproviders/streamlabs
```

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

[](#installation--basic-usage)

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

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

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

```
'streamlabs' => [
  'client_id' => env('STREAMLABS_CLIENT_ID'),
  'client_secret' => env('STREAMLABS_CLIENT_SECRET'),
  'redirect' => env('STREAMLABS_REDIRECT_URI')
],
```

### 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('streamlabs', \SocialiteProviders\Streamlabs\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
        \SocialiteProviders\Streamlabs\StreamlabsExtendSocialite::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::with('streamlabs')->redirect();
```

### Returned User fields

[](#returned-user-fields)

- `id`
- `name`
- `accounts`

> Note: `accounts` is an array of providers that the user has signed-in with Streamlabs; included values are Twitch (`twitch`), YouTube (`youtube`), and Facebook (`facebook`).

### Reference

[](#reference)

- [Streamlabs API Reference](https://dev.streamlabs.com/)

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance56

Moderate activity, may be stable

Popularity27

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 53.8% 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 ~246 days

Total

5

Last Release

1107d ago

Major Versions

v3.0.1 → 4.0.02020-10-25

PHP version history (3 changes)v3.0.0PHP ^7.2

4.1.0PHP ^7.2 || ^8.0

4.2.0PHP ^7.4 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/65eb3a7ba2a2c13b3a9de48b836caf759ad4052f9a839e30464c80d177d5b3d2?d=identicon)[atymic](/maintainers/atymic)

---

Top Contributors

[![lucasmichot](https://avatars.githubusercontent.com/u/513603?v=4)](https://github.com/lucasmichot "lucasmichot (14 commits)")[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (6 commits)")[![robiiinos](https://avatars.githubusercontent.com/u/16455953?v=4)](https://github.com/robiiinos "robiiinos (2 commits)")[![Jari-B](https://avatars.githubusercontent.com/u/55690402?v=4)](https://github.com/Jari-B "Jari-B (1 commits)")[![AnkhHeart](https://avatars.githubusercontent.com/u/9393352?v=4)](https://github.com/AnkhHeart "AnkhHeart (1 commits)")[![m1guelpf](https://avatars.githubusercontent.com/u/23558090?v=4)](https://github.com/m1guelpf "m1guelpf (1 commits)")[![maks-oleksyuk](https://avatars.githubusercontent.com/u/90793591?v=4)](https://github.com/maks-oleksyuk "maks-oleksyuk (1 commits)")

---

Tags

laraveloauthoauth1oauth2social-mediasocialitesocialite-providerslaravelprovideroauthsocialitestreamlabs

### Embed Badge

![Health badge](/badges/socialiteproviders-streamlabs/health.svg)

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

###  Alternatives

[socialiteproviders/microsoft

Microsoft OAuth2 Provider for Laravel Socialite

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

Instagram OAuth2 Provider for Laravel Socialite

421.9M5](/packages/socialiteproviders-instagram)[kovah/laravel-socialite-oidc

OpenID Connect OAuth2 Provider for Laravel Socialite

2073.7k](/packages/kovah-laravel-socialite-oidc)[socialiteproviders/kakao

Kakao OAuth2 Provider for Laravel Socialite

10484.7k4](/packages/socialiteproviders-kakao)

PHPackages © 2026

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