Skip to content

recca0120/socialite

Repository files navigation

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
    • Twitter
  • OAuth2
    • Dropbox
    • Facebook
    • GitHub
    • Google
    • Instagram
    • LinkedIn

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published