Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Latest commit

 

History

History
23 lines (16 loc) · 459 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 459 Bytes

SteamAuth

Provides Steam OAuth authentication. Includes Laravel Service Provider and Facade.

Deprecated: Use socialiteproviders/steam.

Use with Laravel

To use the Service Provider and Facade, make sure you add the following in your config/app.php:

'providers' => [
    ...
    Reflex\SteamAuth\Laravel\SteamAuthServiceProvider::class
],

...

'aliases' => [
    ...
    'SteamAuth' => Reflex\SteamAuth\Laravel\SteamAuth::class
],