SocialiteProviders / Generators by m1guelpf

Laravel Artisan Generators for OAuth1/OAuth2 Providers
240,991
60
5
Package Data
Maintainer Username: m1guelpf
Maintainer Contact: hello@brianfaust.de (Brian Faust)
Package Create Date: 2015-02-24
Package Last Update: 2024-03-23
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-16 15:00:59
Package Statistics
Total Downloads: 240,991
Monthly Downloads: 3,100
Daily Downloads: 84
Total Stars: 60
Total Watchers: 5
Total Forks: 26
Total Open Issues: 0

Artisan Generators for OAuth1/OAuth2 Providers

Scrutinizer Code Quality Latest Stable Version Total Downloads Latest Unstable Version License

Contents

About

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

Installation

1. Composer

composer require socialiteproviders/generators

2. Service Provider

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

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

Usage

Generate OAuth1 Provider

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

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

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

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