truckersmp/steam-socialite

Laravel Socialite provider for Steam OpenID.

v1.6.0 2023-02-15 08:49 UTC

This package is auto-updated.

Last update: 2024-04-25 11:08:08 UTC


README

68747470733a2f2f747275636b6572736d702e636f6d2f6173736574732f696d672f747275636b6572736d702d6c6f676f2d736d2e706e67

GitHub Workflow Status StyleCI Status Total Downloads Latest Stable Version Latest Unstable Version License

Introduction

The TruckersMP PHP library for Laravel Socialite provides an adapter for the Steam OpenID authentication.

Requirements

Installation

To get started, use Composer to add the package to your application:

composer require truckersmp/steam-socialite

Following the documentation of Laravel Socialite, you will also need to add credentials for the Steam service. These credentials should be placed in your config/services.php configuration file:

'steam' => [
    'client_id' => null,
    'client_secret' => env('STEAM_SECRET'),
    'redirect' => env('STEAM_REDIRECT_URI'),
],

As OpenID does not use the client_id and client_secret properties, the latter is actually utilized as the Steam API key and is used for fetching the user data. For more information about the API, check the Steam developer portal.

Do not forget to put new environment variables into your .env application file:

# Steam OpenID
STEAM_SECRET=
STEAM_REDIRECT_URI=

Laravel 5.5+ uses Package Auto-Discovery, so does not require you to manually add the SteamSocialiteProvider.

If you do not use auto-discovery, you will need register the provider in your config/app.php configuration file as a package service provider:

'providers' => [

    // ...

    /*
     * Package Service Providers...
     */
    TruckersMP\SteamSocialite\SteamSocialiteProvider::class,

    // ...

],

Consult the documentation of Laravel Socialite to implement the application functionality.

Support

If you have any questions about the library, you can create a topic on our forum.

License

This package is open-source and is licensed under the MIT license.