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

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

coderyouth/socialite
====================

CoderYouth OAuth2 Provider for Laravel Socialite

v1.0(7y ago)341MITPHPPHP ^5.6 || ^7.0

Since Sep 2Pushed 7y agoCompare

[ Source](https://github.com/coderyouth/socialite)[ Packagist](https://packagist.org/packages/coderyouth/socialite)[ RSS](/packages/coderyouth-socialite/feed)WikiDiscussions master Synced 3d ago

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

Authenticate with CoderYouth
============================

[](#authenticate-with-coderyouth)

[![Latest Version on Packagist](https://camo.githubusercontent.com/71d843634846e1656f288eff25cad5dacf17b5b8387b5baf98e0ed3f80fbe95e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636f646572796f7574682f736f6369616c6974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/coderyouth/socialite)[![Total Downloads](https://camo.githubusercontent.com/121fa88224a55088e09f2b7016ec7e125b6302b3fdf74cac14af0df3d10af016/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f646572796f7574682f736f6369616c6974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/coderyouth/socialite)

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

[](#installation)

### 1. Install the package via composer:

[](#1-install-the-package-via-composer)

```
composer require coderyouth/socialite
```

### 2. Install the service provider

[](#2-install-the-service-provider)

- Remove `Laravel\Socialite\SocialiteServiceProvider` from your `providers[]` array in `config\app.php` if you have added it already.
- Add `\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.](https://github.com/laravel/socialite)

### 3. Event Listener

[](#3-event-listener)

- Add `SocialiteProviders\Manager\SocialiteWasCalled` event to your `listen[]` array in `app/Providers/EventServiceProvider`.
- Add `'SocialiteProviders\\Imgur\\ImgurExtendSocialite@handle',` to the `SocialiteWasCalled` array.

For example:

```
/**
 * The event handler mappings for the application.
 *
 * @var array
 */
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        \CoderYouth\Socialite\CoderYouthExtendSocialite::class,
    ],
];
```

### 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`.

[](#add-to-configservicesphp)

```
'coderyouth' => [
    'client_id' => env('CODERYOUTH_KEY'),
    'client_secret' => env('CODERYOUTH_SECRET'),
    'redirect' => env('CODERYOUTH_REDIRECT')
],
```

Usage
-----

[](#usage)

- [Laravel docs on configuration](http://laravel.com/docs/master/configuration)
- You should now be able to use it like you would regularly use Socialite (assuming you have the facade installed):

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

### Lumen Support

[](#lumen-support)

You can use Socialite providers with Lumen. Just make sure that you have facade support turned on and that you follow the setup directions properly.

**Note:** If you are using this with Lumen, all providers will automatically be stateless since **Lumen** does not keep track of state.

Also, configs cannot be parsed from the `services[]` in Lumen. You can only set the values in the `.env` file as shown exactly in this document. If needed, you can also override a config (shown below).

### Stateless

[](#stateless)

- You can set whether or not you want to use the provider as stateless.

**Note:** If you are using this with Lumen, all providers will automatically be stateless since **Lumen** does not keep track of state.

```
// to turn off stateless
return Socialite::with('coderyouth')->stateless(false)->redirect();

// to use stateless
return Socialite::with('coderyouth')->stateless()->redirect();
```

### Overriding a config

[](#overriding-a-config)

If you need to override the provider's environment or config variables dynamically anywhere in your application, you may use the following:

```
$clientId = "secret";

$clientSecret = "secret";

$redirectUrl = "http://yourdomain.com/api/redirect";

$additionalProviderConfig = ['site' => 'meta.stackoverflow.com'];

$config = new \SocialiteProviders\Manager\Config($clientId, $clientSecret, $redirectUrl, $additionalProviderConfig);
return Socialite::with('coderyouth')->setConfig($config)->redirect();
```

### Retrieving the Access Token Response Body

[](#retrieving-the-access-token-response-body)

Laravel Socialite by default only allows access to the `access_token`. Which can be accessed via the `\Laravel\Socialite\User->token` public property. Sometimes you need access to the whole response body which may contain items such as a `refresh_token`.

You can get the access token response body, after you called the `user()` method in Socialite, by accessing the property `$user->accessTokenResponseBody`;

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

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Miguel Piedrafita](https://github.com/m1guelpf)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

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

2811d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23558090?v=4)[Miguel Piedrafita](/maintainers/m1guelpf)[@m1guelpf](https://github.com/m1guelpf)

---

Top Contributors

[![m1guelpf](https://avatars.githubusercontent.com/u/23558090?v=4)](https://github.com/m1guelpf "m1guelpf (1 commits)")

### Embed Badge

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

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

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