PHPackages                             socialiteproviders/generators - 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/generators

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

socialiteproviders/generators
=============================

Laravel Artisan Generators for OAuth1/OAuth2 Providers

4.8.0(2mo ago)63345.5k—9.2%31MITPHPPHP ^8.0

Since Feb 24Pushed 2mo ago3 watchersCompare

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

READMEChangelog (10)Dependencies (1)Versions (34)Used By (0)

Artisan Generators for OAuth1/OAuth2 Providers
==============================================

[](#artisan-generators-for-oauth1oauth2-providers)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/4641330d27c4446bc4b615da9729c5bdd4a8a218233d02a7d228a8470a42268c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f536f6369616c69746550726f7669646572732f47656e657261746f72732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/SocialiteProviders/Generators/?branch=master)[![Latest Stable Version](https://camo.githubusercontent.com/c2ceba24a608d4db8f5d0754591395008eec5c10daff792a26041cff87979ff4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736f6369616c69746570726f7669646572732f67656e657261746f72732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/socialiteproviders/generators)[![Total Downloads](https://camo.githubusercontent.com/47ef9285463ca5caae47e18793863803392b33672e8d7e2ddc7c41d22648513f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736f6369616c69746570726f7669646572732f67656e657261746f72732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/socialiteproviders/generators)[![Latest Unstable Version](https://camo.githubusercontent.com/7c2490400439df7d7cc7249a1a2a932472a47a9a0c70fc9f2d9d6fcb0e1907d5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f767072652f736f6369616c69746570726f7669646572732f67656e657261746f72732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/socialiteproviders/generators)[![License](https://camo.githubusercontent.com/a3e6e556feceeb881bdfb31d38682844063c659bcd9c8c253e948e591df6348b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f736f6369616c69746570726f7669646572732f67656e657261746f72732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/socialiteproviders/generators)

Contents
--------

[](#contents)

- [About](#about)
- [Installation](#installation)
    - [1. Composer](#1-composer)
    - [2. Service Provider](#2-service-provider)
- [Usage](#usage)

About
-----

[](#about)

A Laravel Package to generate OAuth1/OAuth2 Providers that are compatible with the Socialite Providers Manager.

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

[](#installation)

### 1. Composer

[](#1-composer)

```
composer require socialiteproviders/generators
```

### 2. Service Provider

[](#2-service-provider)

Add the ServiceProvider to the providers array in the `config/app.php`.

```
'providers' => [
    SocialiteProviders\Generators\GeneratorsServiceProvider::class,
],
```

Usage
-----

[](#usage)

### Generate OAuth1 Provider

[](#generate-oauth1-provider)

```
php artisan make:socialite Dropbox --spec=oauth1 --author=YourName --email=your@name.com
```

### Generate OAuth1 Provider with URLs

[](#generate-oauth1-provider-with-urls)

```
php artisan make:socialite Dropbox --spec=oauth1 --author=YourName --email=your@name.com --request_token_url=http://myapp.io/oauth/request_token --authorize_url=http://myapp.io/oauth/authorize --access_token_url=http://myapp.io/oauth/access_token --user_details_url=http://myapp.io/users/me
```

### Generate OAuth2 Provider

[](#generate-oauth2-provider)

```
php artisan make:socialite Dropbox --spec=oauth2 --author=YourName --email=your@name.com
```

### Generate OAuth2 Provider with URLs and Scope

[](#generate-oauth2-provider-with-urls-and-scope)

```
php artisan make:socialite Dropbox --spec=oauth2 --author=YourName --email=your@name.com --scopes=basic --authorize_url=http://myapp.io/oauth/authorize --access_token_url=http://myapp.io/oauth/access_token --user_details_url=http://myapp.io/users/me
```

###  Health Score

64

—

FairBetter than 99% of packages

Maintenance83

Actively maintained with recent releases

Popularity51

Moderate usage in the ecosystem

Community25

Small or concentrated contributor base

Maturity79

Established project with proven stability

 Bus Factor4

4 contributors hold 50%+ of commits

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 ~125 days

Recently: every ~486 days

Total

33

Last Release

87d ago

Major Versions

v1.0.9 → v2.0.02016-03-30

v2.0.1 → v3.0.02016-11-13

v3.1.3 → v4.0.02017-10-03

PHP version history (5 changes)v1.0.0PHP &gt;=5.4.0

v3.0.0PHP ^5.6

v3.1.2PHP ^5.6 || ^7.0

v4.6.2PHP ^7.3|^8.0

v4.7.0PHP ^8.0

### Community

Maintainers

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

---

Top Contributors

[![faustbrian](https://avatars.githubusercontent.com/u/22145591?v=4)](https://github.com/faustbrian "faustbrian (10 commits)")[![m1guelpf](https://avatars.githubusercontent.com/u/23558090?v=4)](https://github.com/m1guelpf "m1guelpf (7 commits)")[![draperstudio](https://avatars.githubusercontent.com/u/257012927?v=4)](https://github.com/draperstudio "draperstudio (3 commits)")[![dzeyelid](https://avatars.githubusercontent.com/u/977117?v=4)](https://github.com/dzeyelid "dzeyelid (2 commits)")[![lucasmichot](https://avatars.githubusercontent.com/u/513603?v=4)](https://github.com/lucasmichot "lucasmichot (2 commits)")[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (2 commits)")[![hellokirk](https://avatars.githubusercontent.com/u/4130494?v=4)](https://github.com/hellokirk "hellokirk (2 commits)")[![dingdayu](https://avatars.githubusercontent.com/u/2040348?v=4)](https://github.com/dingdayu "dingdayu (2 commits)")[![maks-oleksyuk](https://avatars.githubusercontent.com/u/90793591?v=4)](https://github.com/maks-oleksyuk "maks-oleksyuk (1 commits)")[![mathieutu](https://avatars.githubusercontent.com/u/11351322?v=4)](https://github.com/mathieutu "mathieutu (1 commits)")[![ReArmedHalo](https://avatars.githubusercontent.com/u/1661728?v=4)](https://github.com/ReArmedHalo "ReArmedHalo (1 commits)")[![robiiinos](https://avatars.githubusercontent.com/u/16455953?v=4)](https://github.com/robiiinos "robiiinos (1 commits)")[![spacemudd](https://avatars.githubusercontent.com/u/20286281?v=4)](https://github.com/spacemudd "spacemudd (1 commits)")[![the-provost](https://avatars.githubusercontent.com/u/46884416?v=4)](https://github.com/the-provost "the-provost (1 commits)")[![yannelli](https://avatars.githubusercontent.com/u/59575788?v=4)](https://github.com/yannelli "yannelli (1 commits)")[![csbarker-jobadder](https://avatars.githubusercontent.com/u/94833755?v=4)](https://github.com/csbarker-jobadder "csbarker-jobadder (1 commits)")[![dabernathy89](https://avatars.githubusercontent.com/u/2709404?v=4)](https://github.com/dabernathy89 "dabernathy89 (1 commits)")[![davetosh](https://avatars.githubusercontent.com/u/122698?v=4)](https://github.com/davetosh "davetosh (1 commits)")[![hotmeteor](https://avatars.githubusercontent.com/u/378585?v=4)](https://github.com/hotmeteor "hotmeteor (1 commits)")[![jorgenb](https://avatars.githubusercontent.com/u/8543501?v=4)](https://github.com/jorgenb "jorgenb (1 commits)")

### Embed Badge

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

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

###  Alternatives

[casbin/laravel-authz

An authorization library that supports access control models like ACL, RBAC, ABAC in Laravel.

324339.9k4](/packages/casbin-laravel-authz)[andrewdwallo/filament-companies

A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.

34450.0k2](/packages/andrewdwallo-filament-companies)[scaler-tech/laravel-saml2

SAML2 Service Provider integration for Laravel applications, based on OneLogin toolkit

2737.5k](/packages/scaler-tech-laravel-saml2)[acoustep/entrust-gui

A GUI for the Entrust package.

11425.7k](/packages/acoustep-entrust-gui)[wnikk/laravel-access-rules

Simple system of ACR (access control rules) for Laravel, with roles, groups, unlimited inheritance and possibility of multiplayer use.

103.6k1](/packages/wnikk-laravel-access-rules)

PHPackages © 2026

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