An open API service indexing awesome lists of open source software.

https://github.com/mightyscollins/steam-auth

Simple Laravel 5.1 Steam Auth
https://github.com/mightyscollins/steam-auth

Last synced: 7 months ago
JSON representation

Simple Laravel 5.1 Steam Auth

Awesome Lists containing this project

README

        

# Laravel 5.1 Steam Login
[![Latest Stable Version](https://poser.pugx.org/scollins/steam-auth/v/stable)](https://packagist.org/packages/scollins/steam-auth)
[![Total Downloads](https://poser.pugx.org/scollins/steam-auth/downloads)](https://packagist.org/packages/scollins/steam-auth)
[![License](https://poser.pugx.org/scollins/steam-auth/license)](https://packagist.org/packages/scollins/steam-auth)
[![Monthly Downloads](https://poser.pugx.org/scollins/steam-auth/d/monthly)](https://packagist.org/packages/scollins/steam-auth)

This package redirects user to steam and returns with user information.

The user will be redirected to the steam login page, if they are able to sucsessfully login the folowing details are stored in the session:
- playerId
- name
- avatar (Current 64x64)

Now with support for Facades, just add `'steamLogin' => \SCollins\SteamAuth\Http\SteamLogin::class,` to your kernal and it will test if the user is logged in.

## How to use
Grab the package with `composer require scollins/steam-auth`

Add to your services `SCollins\SteamAuth\SteamAuthServiceProvider::class,`

You can even made a Facade `'Steam' => SCollins\SteamAuth\SteamAuthFacade::class,`

Then publish the config files `php artisan vendor:publish`

Fill in the details at /config/steam.php

Redirect user to /steamlogin and they should login and /steamlogout to logout