PHPackages                             fkrzski/laravel-steam-api-sdk - 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. [API Development](/categories/api)
4. /
5. fkrzski/laravel-steam-api-sdk

ActiveLibrary[API Development](/categories/api)

fkrzski/laravel-steam-api-sdk
=============================

Laravel bridge for fkrzski/php-steam-api-sdk — service provider, Steam facade and test fakes for the Steam Web API.

0.1.0(1mo ago)0308↑60%MITPHPPHP ^8.5.0CI passing

Since Jun 11Pushed 4d agoCompare

[ Source](https://github.com/fkrzski/laravel-steam-api-sdk)[ Packagist](https://packagist.org/packages/fkrzski/laravel-steam-api-sdk)[ GitHub Sponsors](https://github.com/fkrzski)[ RSS](/packages/fkrzski-laravel-steam-api-sdk/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (1)Dependencies (11)Versions (2)Used By (0)

Laravel Steam API SDK
=====================

[](#laravel-steam-api-sdk)

[![Banner of Laravel Steam API SDK](art/banner.png)](art/banner.png)

[![License](https://camo.githubusercontent.com/fd735a786e6c768b43d39de5a427a2347fc5e33c9a568786fdd5af1b80c1aec8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f666b727a736b692f6c61726176656c2d737465616d2d6170692d73646b2e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fkrzski/laravel-steam-api-sdk)[![Latest Version on Packagist](https://camo.githubusercontent.com/436abd931d04b527a529e05b0580fc8905f803f26f1696a77b9244ad2692ea10/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666b727a736b692f6c61726176656c2d737465616d2d6170692d73646b2e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fkrzski/laravel-steam-api-sdk)[![Total Downloads](https://camo.githubusercontent.com/493691d43e166edb0d353e64a004e43484104b8a14e7601196e13663857c4e37/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f666b727a736b692f6c61726176656c2d737465616d2d6170692d73646b2e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fkrzski/laravel-steam-api-sdk)[![Tests](https://camo.githubusercontent.com/becf7ee80719459567e5cf11d94c35e3a5316df7b1523927a0a5db4c6703451c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f666b727a736b692f6c61726176656c2d737465616d2d6170692d73646b2f74657374732e796d6c3f6272616e63683d6d6173746572266c6162656c3d7465737473267374796c653d666f722d7468652d6261646765)](https://github.com/fkrzski/laravel-steam-api-sdk/actions/workflows/tests.yml)

Laravel bridge for [`fkrzski/php-steam-api-sdk`](https://github.com/fkrzski/php-steam-api-sdk). Ships a service provider, a `Steam` facade and a `Steam::fake()` test helper so you can talk to the [Steam Web API](https://steamcommunity.com/dev) the Laravel way.

- Auto-discovered `SteamConnector` singleton, Octane-safe.
- Rate-limit budget shared across processes through the Laravel cache store.
- Fluent `Steam` facade with first-class request helpers.
- `AsSteamId` Eloquent cast and one-liner test fakes via Saloon's `MockClient`.

Requirements
------------

[](#requirements)

- PHP **8.5+**
- Laravel **13+**

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

[](#installation)

```
composer require fkrzski/laravel-steam-api-sdk
```

The service provider and `Steam` facade are auto-discovered. Publish the config to override defaults:

```
php artisan vendor:publish --tag=steam-api-config
```

Set your Steam Web API key in `.env`:

```
STEAM_API_KEY=your-steam-web-api-key
```

Quick start
-----------

[](#quick-start)

```
use Fkrzski\LaravelSteamApiSdk\Facades\Steam;
use Fkrzski\SteamApiSdk\ValueObjects\SteamId;

$id = SteamId::fromSteamId64('76561198000000000');

$summaries    = Steam::playerSummaries([$id]);
$library      = Steam::ownedGames($id, appIdsFilter: [381210]);
$stats        = Steam::userStatsForGame($id, appId: 381210);
$achievements = Steam::playerAchievements($id, appId: 381210);
$resolvedId   = Steam::resolveVanityUrl('gabelogannewell');
```

Each helper returns a strongly-typed DTO from the underlying SDK — you never touch raw JSON.

Documentation
-------------

[](#documentation)

Full documentation lives at **[docs.fkrzski.dev/laravel-steam-api-sdk](https://docs.fkrzski.dev/laravel-steam-api-sdk)**:

- [Guide](https://docs.fkrzski.dev/laravel-steam-api-sdk/guide) — the `SteamId` value object, facade helpers, exceptions, and concurrent requests.
- [Configuration](https://docs.fkrzski.dev/laravel-steam-api-sdk/configuration) — the config file, your API key, and the cache-backed rate limit.
- [API reference](https://docs.fkrzski.dev/laravel-steam-api-sdk/api-reference) — every facade method, its parameters, return type, and errors.
- [Eloquent cast](https://docs.fkrzski.dev/laravel-steam-api-sdk/eloquent-cast) — persist a Steam ID on a model with `AsSteamId`.
- [Testing](https://docs.fkrzski.dev/laravel-steam-api-sdk/testing) — fake the Steam Web API with `Steam::fake()`.

License
-------

[](#license)

MIT. See [LICENSE.md](LICENSE.md).

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance95

Actively maintained with recent releases

Popularity17

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 82.4% of commits — single point of failure

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

Unknown

Total

1

Last Release

46d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/accf44fd0ffa5349a96edefe2daf51dc4475af31a01611acade1d44b35341d61?d=identicon)[fkrzski](/maintainers/fkrzski)

---

Top Contributors

[![fkrzski](https://avatars.githubusercontent.com/u/75097934?v=4)](https://github.com/fkrzski "fkrzski (14 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")

---

Tags

phplaravelsdksaloonsteamsteam api

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/fkrzski-laravel-steam-api-sdk/health.svg)

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.3M347](/packages/psalm-plugin-laravel)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M250](/packages/laravel-ai)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

813336.8k3](/packages/defstudio-telegraph)[moonshine/moonshine

Laravel administration panel

1.3k253.1k86](/packages/moonshine-moonshine)[saloonphp/laravel-plugin

The official Laravel plugin for Saloon

807.1M211](/packages/saloonphp-laravel-plugin)[api-platform/laravel

API Platform support for Laravel

58174.6k17](/packages/api-platform-laravel)

PHPackages © 2026

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