recca0120/socialite
Laravel Socialite
Introduction
Simulation Laravel Socialite
Installation
composer require recca0120/socialite
Laravel 5.0:
Update config/app.php
'providers' => [
...
'Recca0120\Socialite\SocialiteServiceProvider',
];
'aliases' => [
...
'Socialite' => 'Recca0120\Socialite\Facades\Socialite'
];
Laravel 5.1:
Update config/app.php
'providers' => [
...
Recca0120\Socialite\SocialiteServiceProvider::class,
];
'alias' => [
...
'Socialite' => Recca0120\Socialite\Facades\Socialite::class
];
Official Documentation
Documentation for Socialite can be found on the Laravel website.
License
Laravel Socialite is open-sourced software licensed under the MIT license
Included service implementations
- OAuth1
- BitBucket
- OAuth2
- Dropbox
- GitHub