recca0120/socialite

Socialite for Laravel 5

v1.0.7 2016-01-03 21:32 UTC

This package is auto-updated.

Last update: 2024-03-10 03:13:38 UTC


README

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