PHPackages                             openauthdev/socialiteopenauthprovider - 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. openauthdev/socialiteopenauthprovider

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

openauthdev/socialiteopenauthprovider
=====================================

OpenAuth.dev provider for Laravel Socialite

1.0.1(4y ago)2541[1 PRs](https://github.com/openauth-dev/SocialiteOpenAuthProvider/pulls)LGPL-2.1-onlyPHPPHP &gt;=7.2.5

Since Jul 12Pushed 3y ago2 watchersCompare

[ Source](https://github.com/openauth-dev/SocialiteOpenAuthProvider)[ Packagist](https://packagist.org/packages/openauthdev/socialiteopenauthprovider)[ Docs](https://www.openauth.dev/)[ RSS](/packages/openauthdev-socialiteopenauthprovider/feed)WikiDiscussions main Synced 1mo ago

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

OpenAuth.dev Provider for Laravel Socialite
===========================================

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

[![openauth-icon](https://user-images.githubusercontent.com/81188/87538212-25d2ef00-c69c-11ea-87a7-b967826cb669.png)](https://user-images.githubusercontent.com/81188/87538212-25d2ef00-c69c-11ea-87a7-b967826cb669.png)

### OpenAuth.dev Provider for Laravel Socialite

[](#openauthdev-provider-for-laravel-socialite-1)

[![GitHub Workflow Status](https://camo.githubusercontent.com/67ad58808bd207bd1d3decc17649ab504ae0a32428f182154f906c4c51b9a50f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6f70656e617574682d6465762f536f6369616c6974654f70656e4175746850726f76696465722f4275696c64)](https://camo.githubusercontent.com/67ad58808bd207bd1d3decc17649ab504ae0a32428f182154f906c4c51b9a50f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6f70656e617574682d6465762f536f6369616c6974654f70656e4175746850726f76696465722f4275696c64) [![Packagist Version](https://camo.githubusercontent.com/54c7a45c73a0bf269282b5f758fc6c58a78acfc82aad317f0e8ce0ff25a6cb12/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f70656e617574686465762f736f6369616c6974656f70656e6175746870726f7669646572)](https://camo.githubusercontent.com/54c7a45c73a0bf269282b5f758fc6c58a78acfc82aad317f0e8ce0ff25a6cb12/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f70656e617574686465762f736f6369616c6974656f70656e6175746870726f7669646572) [![Packagist Downloads](https://camo.githubusercontent.com/1575486de9256b7347920e17e924452bec6cde9e5aeb342078aa1524f6ebc47d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f70656e617574686465762f736f6369616c6974656f70656e6175746870726f7669646572)](https://camo.githubusercontent.com/1575486de9256b7347920e17e924452bec6cde9e5aeb342078aa1524f6ebc47d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f70656e617574686465762f736f6369616c6974656f70656e6175746870726f7669646572)[![GitHub license](https://camo.githubusercontent.com/f6a6dedd5b6620200340d27f59e47954bf1f3cbf1bdad8450abb7dbb1af1d94f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6f70656e617574682d6465762f536f6369616c6974654f70656e4175746850726f7669646572)](https://github.com/openauth-dev/SocialiteOpenAuthProvider/blob/main/LICENSE)

---

### Table of contents

[](#table-of-contents)

- [About the project](#about-the-project)
- [Getting Started](#getting-started)
- [Configuration](#configuration)
- [Usage](#usage)
- [Contributing](#contributing)
- [Versioning](#versioning)
- [Built With](#built-with)
- [Authors](#authors)
- [License](#license)

About the project
-----------------

[](#about-the-project)

TBA

Getting started
---------------

[](#getting-started)

Require the project:

```
composer require openauthdev/socialiteopenauthprovider
```

Ready! Now you can start with your project.

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

[](#configuration)

First of all replace the service provider `Laravel\Socialite\SocialiteServiceProvider` in the `config\app.php` in `providers[]` with `\SocialiteProviders\Manager\ServiceProvider::class`.

Then we add the required event listener. Go to `app/Providers/EventServiceProvider` and add the following lines to the `listen[]` array.

```
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
    'SocialiteProviders\\OpenAuth\\OpenAuthExtendSocialite@handle',
]
```

Finally, we just need to add the configuration instructions. To do this, add the following to the `config/services.php' file.

```
'openauth' => [
    'client_id' => env('OPENAUTH_CLIENT_ID'),
    'client_secret' => env('OPENAUTH_CLIENT_SECRET'),
    'redirect' => env('OPENAUTH_REDIRECT_URI')
]
```

The configuration is now complete.

Usage
-----

[](#usage)

Now you can use the OAuthProvider as usual with Sociallite.

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

Contributing
------------

[](#contributing)

There are many ways to help this open source project. Write tutorials, improve documentation, share bugs with others, make feature requests, or just write code. We look forward to every contribution.

Versioning
----------

[](#versioning)

We use [SemVer](http://semver.org/) for versioning. For available versions, see the [tags on this repository](https://github.com/openauth-dev/SocialiteOpenAuthProvider/tags).

Built with
----------

[](#built-with)

- [Socialite Providers Manager](https://github.com/SocialiteProviders/Manager) - Easily add new or override built-in Laravel Socialite providers

Authors
-------

[](#authors)

- **Titus Kirch** - *Main development* - [TitusKirch](https://github.com/TitusKirch)

See also the list of [contributors](https://github.com/openauth-dev/SocialiteOpenAuthProvider/graphs/contributors) who participated in this project.

License
-------

[](#license)

This project is licensed under the LGPL-2.1 License - see the [LICENSE](LICENSE) file for details.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 82.6% 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 ~309 days

Total

2

Last Release

1819d ago

### Community

Maintainers

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

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

---

Top Contributors

[![TitusKirch](https://avatars.githubusercontent.com/u/16943133?v=4)](https://github.com/TitusKirch "TitusKirch (38 commits)")[![SoftCreatR](https://avatars.githubusercontent.com/u/81188?v=4)](https://github.com/SoftCreatR "SoftCreatR (7 commits)")[![dependabot-preview[bot]](https://avatars.githubusercontent.com/in/2141?v=4)](https://github.com/dependabot-preview[bot] "dependabot-preview[bot] (1 commits)")

---

Tags

laraveloauthoauth2oauth2-clientoauth2-provideropenauthphpphp7socialitesocialite-providers

### Embed Badge

![Health badge](/badges/openauthdev-socialiteopenauthprovider/health.svg)

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

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