Skip to content

Commit

Permalink
clarify
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jun 3, 2015
1 parent 37dce27 commit 93dbb8d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,15 @@ To get started with Socialite, add to your `composer.json` file as a dependency:

### Configuration

After installing the Socialite library, register the `Laravel\Socialite\SocialiteServiceProvider` in your `config/app.php` configuration file. Also, add the `Socialite` facade to the `aliases` array in your `app` configuration file:
After installing the Socialite library, register the `Laravel\Socialite\SocialiteServiceProvider` in your `config/app.php` configuration file:

'providers' => [
// Other service providers...

'Laravel\Socialite\SocialiteServiceProvider',
],

Also, add the `Socialite` facade to the `aliases` array in your `app` configuration file:

'Socialite' => 'Laravel\Socialite\Facades\Socialite',

Expand Down

0 comments on commit 93dbb8d

Please sign in to comment.