Package Data | |
---|---|
Maintainer Username: | kanalumaddela |
Maintainer Contact: | git@maddela.org (Sam) |
Package Create Date: | 2018-01-29 |
Package Last Update: | 2023-04-19 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-06 03:11:05 |
Package Statistics | |
---|---|
Total Downloads: | 9,226 |
Monthly Downloads: | 71 |
Daily Downloads: | 7 |
Total Stars: | 9 |
Total Watchers: | 2 |
Total Forks: | 11 |
Total Open Issues: | 6 |
Make sure you have made/performed your migrations along with updating your User
model if you plan to follow the examples. I suggest doing whatever works best for you, but certain suggestions should be followed.
| Version | PHP Version | Laravel Version | Docs | | ------- | ----------- | --------------- | ---- | | 1.x | 7.0+ | 5.5+ | Docs | | 2.x | 7.1+ | 5.6+ | Docs |
SteamUser
class to easily retrieve a player's datacomposer require kanalumaddela/laravel-steam-login
php artisan vendor:publish --force --provider kanalumaddela\LaravelSteamLogin\SteamLoginServiceProvider
routes/web.php
use App\Http\Controllers\Auth\SteamLoginController;
use kanalumaddela\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 kanalumaddela\LaravelSteamLogin\Http\Controllers\AbstractSteamLoginController;
use kanalumaddela\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();
}
}
Thanks to these libs which led me to make this