PHPackages                             skyraptor/laravel-steam-login - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. skyraptor/laravel-steam-login

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

skyraptor/laravel-steam-login
=============================

Steam Login package for Laravel 5.5+

2.7.1(5y ago)02.0kMITPHPPHP ^7.3|^8.0

Since Jan 31Pushed 5y agoCompare

[ Source](https://github.com/Deutsche-Squad-Gemeinschaft/laravel-steam-login)[ Packagist](https://packagist.org/packages/skyraptor/laravel-steam-login)[ RSS](/packages/skyraptor-laravel-steam-login/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (4)Versions (38)Used By (0)

Laravel Steam Login
===================

[](#laravel-steam-login)

[![StyleCI](https://camo.githubusercontent.com/f1d36ed5292f802fbf280534af3699bc01224653de4f5fcaaeb9555b0211965c/68747470733a2f2f7374796c6563692e696f2f7265706f732f3234303735363035332f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/240756053)[![Total Downloads](https://camo.githubusercontent.com/e3d65f32d5a2ff52489776a5ecba4d64d6483ce05b35a6897a08cbe38aeeb64e/68747470733a2f2f706f7365722e707567782e6f72672f736b79726170746f722f6c61726176656c2d737465616d2d6c6f67696e2f646f776e6c6f6164732e706e67)](https://packagist.org/packages/skyraptor/laravel-steam-login)[![Latest Stable Version](https://camo.githubusercontent.com/f82b04f811f2b12c8c289be3883736d56b32fc2920871f05332e1d8c773b92cd/68747470733a2f2f706f7365722e707567782e6f72672f736b79726170746f722f6c61726176656c2d737465616d2d6c6f67696e2f762f737461626c65)](https://packagist.org/packages/skyraptor/laravel-steam-login)[![Latest Unstable Version](https://camo.githubusercontent.com/67fba5e4e990510c6ce042558d2b0d6420b92b32015fdfc1fefc1764a42d7a64/68747470733a2f2f706f7365722e707567782e6f72672f736b79726170746f722f6c61726176656c2d737465616d2d6c6f67696e2f762f756e737461626c65)](https://packagist.org/packages/skyraptor/laravel-steam-login)[![License](https://camo.githubusercontent.com/f576b6bd5a39bbc858dbe74cdd1279850d3d29fcd4a26954339b7537528bde7c/68747470733a2f2f706f7365722e707567782e6f72672f736b79726170746f722f6c61726176656c2d737465616d2d6c6f67696e2f6c6963656e7365)](https://packagist.org/packages/skyraptor/laravel-steam-login)

**A light package to provide easy authentication with the Steam API to your Laravel project.**

Features
--------

[](#features)

- Redirect users to the page they were on before logging in
- `SteamUser`class to easily retrieve a player's data
- Included controller and routes for easy setup

Installation
------------

[](#installation)

1. Install library

```
composer require skyraptor/laravel-steam-login

php artisan vendor:publish --force --provider skyraptor\LaravelSteamLogin\SteamLoginServiceProvider

```

2. Add routes

`routes/web.php`

```
use App\Http\Controllers\Auth\SteamLoginController;
use skyraptor\LaravelSteamLogin\Facades\SteamLogin;

//...

SteamLogin::routes(['controller' => SteamLoginController::class]);
```

```
php artisan make:controller Auth\SteamLoginController

```

`App\Http\Controllers\Auth\SteamLoginController.php`

```
