-
Notifications
You must be signed in to change notification settings - Fork 10
2.x Installation
Sam edited this page Apr 27, 2019
·
6 revisions
composer require kanalumaddela/laravel-steam-login
php artisan vendor:publish --force --provider kanalumaddela\LaravelSteamLogin\SteamLoginServiceProvider
- The service provider automatically creates the
config/
folder (if it doesn't exist) and copies theconfig/steam-login.php
for you (if it doesn't exist). - Add this in your
bootstrap/app.php
//...
/*
|--------------------------------------------------------------------------
| Register Service Providers
|--------------------------------------------------------------------------
|
| Here we will register all of the application's service providers which
| are used to bind services into the container. Service providers are
| totally optional, so you are not required to uncomment this line.
|
*/
$app->register(\kanalumaddela\LaravelSteamLogin\SteamLoginServiceProvider::class);
$app->configure('steam-login');
//...