vinelab/social-auth

v3.1.1 2015-03-22 22:58 UTC

This package is auto-updated.

Last update: 2024-03-27 21:29:18 UTC


README

Build Status

Social Authentication - Laravel

Dependency Status

SensioLabsInsight

Installation

Using composer require the package vinelab/social-auth. Edit app.php and add 'Vinelab\Auth\AuthServiceProvider' to the 'providers' array. It will automatically alias itself as SocialAuth which is a Facade.

Configuration

Publish the configuration file using php artisan vendor:publish

Usage

<?php

// start the authentication process
$provider = 'facebook';

// inital authentication route
SocialAuth::authenticate($provider);

// callback route should do this
$profile = SocialAuth::profile($provider, Input::get());

$profile->provider(); // facebook
$profile->info(); // the facebook profile information