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

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

podcasthosting/socialiteprovider-podcastde
==========================================

podcast.de OAuth2 Provider for Laravel Socialite

v0.2(3w ago)029—3.4%MITPHPPHP ^8.3

Since May 13Pushed 3w agoCompare

[ Source](https://github.com/podcasthosting/SocialiteProvider-podcastde)[ Packagist](https://packagist.org/packages/podcasthosting/socialiteprovider-podcastde)[ Docs](https://www.podcast.de)[ RSS](/packages/podcasthosting-socialiteprovider-podcastde/feed)WikiDiscussions main Synced 1w ago

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

Laravel Socialite Provider for podcast.de
=========================================

[](#laravel-socialite-provider-for-podcastde)

OAuth2 driver for [podcast.de](https://www.podcast.de), built on top of [SocialiteProviders/Manager](https://socialiteproviders.com/).

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

[](#installation)

```
composer require podcasthosting/socialiteprovider-podcastde
```

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

[](#configuration)

### 1. `.env`

[](#1-env)

```
PODCASTDE_CLIENT_ID=your-client-id
PODCASTDE_CLIENT_SECRET=your-client-secret
PODCASTDE_REDIRECT_URI=https://your-app.test/auth/podcastde/callback
```

### 2. `config/services.php`

[](#2-configservicesphp)

```
'podcastde' => [
    'client_id'     => env('PODCASTDE_CLIENT_ID'),
    'client_secret' => env('PODCASTDE_CLIENT_SECRET'),
    'redirect'      => env('PODCASTDE_REDIRECT_URI'),
],
```

### 3. Register the event listener

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

In `app/Providers/EventServiceProvider.php`:

```
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        \Podcasthosting\Podcastde\PodcastdeExtendSocialite::class,
    ],
];
```

Usage
-----

[](#usage)

```
use Laravel\Socialite\Facades\Socialite;

Route::get('/auth/podcastde', fn () => Socialite::driver('podcastde')->redirect());

Route::get('/auth/podcastde/callback', function () {
    $user = Socialite::driver('podcastde')->user();

    // $user->getId(), $user->getNickname(), $user->getName(),
    // $user->getEmail(), $user->getAvatar(), $user->token, ...
});
```

### PKCE (optional)

[](#pkce-optional)

For public clients (SPA, mobile) you can enable PKCE (S256):

```
Socialite::driver('podcastde')->enablePKCE()->redirect();
```

Development
-----------

[](#development)

```
composer install
./vendor/bin/phpunit
./vendor/bin/phpstan analyse
./vendor/bin/php-cs-fixer fix
```

License
-------

[](#license)

MIT

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance94

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

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

27d ago

### Community

Maintainers

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

---

Tags

laraveloauthsocialiteoauth2podcastpodcast.de

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[socialiteproviders/apple

Apple OAuth2 Provider for Laravel Socialite

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

Microsoft OAuth2 Provider for Laravel Socialite

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

Instagram OAuth2 Provider for Laravel Socialite

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

OpenID Connect OAuth2 Provider for Laravel Socialite

24110.5k](/packages/kovah-laravel-socialite-oidc)[seoda/socialite-apple

Apple OAuth2 Provider for Laravel Socialite

1028.4k](/packages/seoda-socialite-apple)[laravel-uis/socialite-ui

A Laravel Socialite UI for the new Laravel Starter Kits

116.7k1](/packages/laravel-uis-socialite-ui)

PHPackages © 2026

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