PHPackages                             kanazaca/laravel-steam-auth - 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. kanazaca/laravel-steam-auth

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

kanazaca/laravel-steam-auth
===========================

Laravel Steam Auth

1.1.4(11y ago)257MITPHPPHP &gt;=5.4.0

Since Mar 20Pushed 10y ago3 watchersCompare

[ Source](https://github.com/kanazaca/laravel-steam-auth)[ Packagist](https://packagist.org/packages/kanazaca/laravel-steam-auth)[ RSS](/packages/kanazaca-laravel-steam-auth/feed)WikiDiscussions master Synced today

READMEChangelog (6)Dependencies (1)Versions (6)Used By (0)

Steam authentication for laravel 5
==================================

[](#steam-authentication-for-laravel-5)

This package is a Laravel 5 service provider which provides Steam OpenID and is very easy to integrate with any project which requires steam authentication.

Installation Via Composer
-------------------------

[](#installation-via-composer)

Add this to your composer.json file, in the require object:

```
"kanazaca/laravel-steam-auth": "1.1.*"
```

After that, run composer install to install the package.

Add the service provider to `app/config/app.php`, within the `providers` array.

```
'providers' => array(
	// ...
	'kanazaca\LaravelSteamAuth\SteamServiceProvider',
)
```

Lastly, publish the config file.

```
php artisan vendor:publish

```

Usage
-----

[](#usage)

```
use kanazaca\LaravelSteamAuth\SteamAuth;

class SteamController extends Controller {

    /**
     * @var SteamAuth
     */
    private $steam;

    public function __construct(SteamAuth $steam)
    {
        $this->steam = $steam;
    }

	public function getLogin()
	{

        if( $this->steam->validate()){
            return  $this->steam->steamInfo;  //returns the user steam info
        }else{
            return  $this->steam->redirect(); //redirect to steam login page
        }
	}
}
```

Credits
=======

[](#credits)

- invisnik (original maintainer)

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~2 days

Total

5

Last Release

4114d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/526428777636a364e981699dd701f0a4207f9a58100e31d12c6cbb75df158e9a?d=identicon)[kanazaca](/maintainers/kanazaca)

---

Top Contributors

[![carlosflorencio](https://avatars.githubusercontent.com/u/1500881?v=4)](https://github.com/carlosflorencio "carlosflorencio (9 commits)")[![invisnik](https://avatars.githubusercontent.com/u/7964397?v=4)](https://github.com/invisnik "invisnik (9 commits)")[![kanazaca](https://avatars.githubusercontent.com/u/8916773?v=4)](https://github.com/kanazaca "kanazaca (9 commits)")

---

Tags

laravelauthsteam

### Embed Badge

![Health badge](/badges/kanazaca-laravel-steam-auth/health.svg)

```
[![Health](https://phpackages.com/badges/kanazaca-laravel-steam-auth/health.svg)](https://phpackages.com/packages/kanazaca-laravel-steam-auth)
```

###  Alternatives

[php-open-source-saver/jwt-auth

JSON Web Token Authentication for Laravel and Lumen

84611.1M64](/packages/php-open-source-saver-jwt-auth)[directorytree/ldaprecord-laravel

LDAP Authentication &amp; Management for Laravel.

5752.3M18](/packages/directorytree-ldaprecord-laravel)[jurager/teams

Laravel package to manage team functionality and operate with user permissions.

23822.5k](/packages/jurager-teams)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
