PHPackages                             podcasthosting/socialiteprovider - 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. podcasthosting/socialiteprovider

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

podcasthosting/socialiteprovider
================================

podcaster OAuth2 Provider for Laravel Socialite

v2.0.0(1mo ago)0113MITPHPPHP ^8.3CI failing

Since May 13Pushed 1mo agoCompare

[ Source](https://github.com/podcasthosting/SocialiteProvider)[ Packagist](https://packagist.org/packages/podcasthosting/socialiteprovider)[ RSS](/packages/podcasthosting-socialiteprovider/feed)WikiDiscussions master Synced 3w ago

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

SocialiteProvider for podcaster
===============================

[](#socialiteprovider-for-podcaster)

Laravel Socialite Provider for logging in via the podcaster service ([www.podcaster.de](https://www.podcaster.de)).

Requirements
------------

[](#requirements)

- PHP `^8.3`
- `socialiteproviders/manager` `^4.4`

Installation
------------

[](#installation)

```
composer require podcasthosting/socialiteprovider
```

Configuration
-------------

[](#configuration)

### 1. Add credentials to `config/services.php`

[](#1-add-credentials-to-configservicesphp)

```
'podcaster' => [
    'client_id'     => env('PODCASTER_CLIENT_ID'),
    'client_secret' => env('PODCASTER_CLIENT_SECRET'),
    'redirect'      => env('PODCASTER_REDIRECT_URI'),
],
```

### 2. Register the event listener

[](#2-register-the-event-listener)

In `app/Providers/EventServiceProvider.php`:

```
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        \PodcastHosting\Podcaster\SocialiteProvider\PodcasterExtendSocialite::class,
    ],
];
```

Usage
-----

[](#usage)

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

```
$user = Socialite::driver('podcaster')->user();
```

Scopes
------

[](#scopes)

The provider requests the `read-only-user` scope by default.

PKCE
----

[](#pkce)

PKCE (RFC 7636) is **enabled by default** with `S256` as code challenge method. The provider stores the `code_verifier` in the Laravel session during `redirect()` and submits it automatically in the token exchange request. No additional configuration is required.

If you need to disable PKCE for any reason, extend the provider and set `protected $usesPKCE = false;`.

###  Health Score

43

—

FairBetter than 90% of packages

Maintenance91

Actively maintained with recent releases

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90.9% 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 ~0 days

Total

2

Last Release

44d ago

Major Versions

v1.0.0 → v2.0.02026-05-13

### Community

Maintainers

![](https://www.gravatar.com/avatar/e46ceaecf02019e15394a97fff218f9c9593bbdb8637f840d7ab1ee0b4d2f836?d=identicon)[podcasthosting](/maintainers/podcasthosting)

---

Top Contributors

[![OpenHaus](https://avatars.githubusercontent.com/u/209948?v=4)](https://github.com/OpenHaus "OpenHaus (10 commits)")[![podcasthosting](https://avatars.githubusercontent.com/u/37177988?v=4)](https://github.com/podcasthosting "podcasthosting (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/podcasthosting-socialiteprovider/health.svg)

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

###  Alternatives

[socialiteproviders/apple

Apple OAuth2 Provider for Laravel Socialite

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

Microsoft OAuth2 Provider for Laravel Socialite

346.9M19](/packages/socialiteproviders-microsoft)[socialiteproviders/instagram

Instagram OAuth2 Provider for Laravel Socialite

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

Microsoft Azure OAuth2 Provider for Laravel Socialite

566.8M24](/packages/socialiteproviders-microsoft-azure)[socialiteproviders/laravelpassport

LaravelPassport OAuth2 Provider for Laravel Socialite

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

Discord OAuth2 Provider for Laravel Socialite

422.3M20](/packages/socialiteproviders-discord)

PHPackages © 2026

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