skyraptor/laravel-steam-login

Steam Login package for Laravel 5.5+
1,990
Install
composer require skyraptor/laravel-steam-login
Latest Version:2.7.1
PHP:^7.3|^8.0
License:MIT
Last Updated:May 21, 2021
Links: GitHub  ·  Packagist
Maintainer: bumbummen99

Laravel Steam Login

StyleCI Total Downloads Latest Stable Version Latest Unstable Version License

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

Features

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

Installation

  1. Install library
composer require skyraptor/laravel-steam-login

php artisan vendor:publish --force --provider skyraptor\LaravelSteamLogin\SteamLoginServiceProvider
  1. 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

<?php

namespace App\Http\Controllers\Auth;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Hash;
use skyraptor\LaravelSteamLogin\Http\Controllers\AbstractSteamLoginController;
use skyraptor\LaravelSteamLogin\SteamUser;

class SteamLoginController extends AbstractSteamLoginController
{
    /**
     * {@inheritdoc}
     */
    public function authenticated(Request $request, SteamUser $steamUser)
    {
        // auth logic goes here
        // e.g. $user = User::where('steam_account_id', $steamUser->accountId)->first();
    }
}

Credits

Thanks to these libs which led me to make this

Related Packages

kanalumaddela/laravel-steam-login

Steam Login/Auth package for Laravel/Lumen 5.5+ / 6.x+ / 7.x+ / 8.x+

9,567 9
auth0/login

Auth0 Laravel SDK. Straight-forward and tested methods for implementing authenti...

5,439,548 273
sarav/laravel-multiauth

A Simple Laravel Package for handling multiple authentication

31,063 50
abidra/laravel-google-auth

Laravel Authentication Driver for Google OAuth authentication

15 0
themonkeys/laravel-google-auth

Laravel Authentication Driver for Google OAuth authentication

1,863 43