PHPackages                             steam-market-providers/enums - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. steam-market-providers/enums

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

steam-market-providers/enums
============================

This library contains useful values that the Steam platform uses. For example filters, tags, currencies, categories. If you work with the market place, or parse Steam, you will need it.

1.0.5(3y ago)140MITPHPPHP &gt;=8.1

Since Jul 3Pushed 3y agoCompare

[ Source](https://github.com/steam-market-providers/enums)[ Packagist](https://packagist.org/packages/steam-market-providers/enums)[ Docs](https://github.com/steam-market-providers/enums)[ RSS](/packages/steam-market-providers-enums/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (3)Versions (7)Used By (0)

🎮 Steam enums - simple list of useful values 👾
==============================================

[](#-steam-enums---simple-list-of-useful-values-)

[![Build Status](https://camo.githubusercontent.com/5ca90db26f6cd22232b1f409c5d28e48b69c5b399d45b04f06aa618558fbee11/68747470733a2f2f636972636c6563692e636f6d2f67682f737465616d2d6d61726b65742d70726f7669646572732f656e756d732e7376673f7374796c653d736869656c64)](https://circleci.com/gh/steam-market-providers/enums)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/3caae3c688d99faab33b806453aa1dc88fa06f742e06f1e6bbc433d490e7ca91/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/steam-market-providers/enums/?branch=main)[![Code Coverage](https://camo.githubusercontent.com/b73f98deb3ac273b14568fcc98c99750fd1044f05afb5bad4c3726f8fafa3c13/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/steam-market-providers/enums/?branch=main)[![Code Intelligence Status](https://camo.githubusercontent.com/cab05aa3040cac4c63bd1ee7a8cfdd48586949e88cd92a7ad20dfaee7bbc4186/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d61696e)](https://scrutinizer-ci.com/code-intelligence)[![Latest Stable Version](https://camo.githubusercontent.com/f96edc49853381feb0ab665ad05388ac1c01d392dfb25a2fec40fcc5b68eda78/687474703a2f2f706f7365722e707567782e6f72672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f76)](https://packagist.org/packages/steam-market-providers/enums)[![Total Downloads](https://camo.githubusercontent.com/a012032d677f4504031e238372467b96e91e183d5b90990fc249026181b56baf/687474703a2f2f706f7365722e707567782e6f72672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f646f776e6c6f616473)](https://packagist.org/packages/steam-market-providers/enums)[![Latest Unstable Version](https://camo.githubusercontent.com/c6258898f4ae4218b01f589222048d521144ca03d32d552b168020a246ca0346/687474703a2f2f706f7365722e707567782e6f72672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f762f756e737461626c65)](https://packagist.org/packages/steam-market-providers/enums)[![License](https://camo.githubusercontent.com/8c248bb0e32649302b63bc97e8b2fceab6c06806533bce1c58ae28609c8e08a5/687474703a2f2f706f7365722e707567782e6f72672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f6c6963656e7365)](https://packagist.org/packages/steam-market-providers/enums) [![PHP Version Require](https://camo.githubusercontent.com/db562b9604bddd6dd29ca73408cd087a11f109ae5b6706d07fe2cdd92212230b/687474703a2f2f706f7365722e707567782e6f72672f737465616d2d6d61726b65742d70726f7669646572732f656e756d732f726571756972652f706870)](https://packagist.org/packages/steam-market-providers/enums)

This library has collected all the necessary values of filters, currencies, countries, categories, and so on from the Steam service. If you are developing under steam, this library will come in handy.

### Why do you need

[](#why-do-you-need)

- Who works with api steam
- Who is parsing the site
- Who parses the marketplace
- And in other cases of working with the steam platform

### Install

[](#install)

```
composer require steam-market-providers/enums
```

### Implementation List

[](#implementation-list)

- Steam App
- Steam Currency
- Steam Language
- Steam Global tag
- Steam Platform
- Steam Countries
- Steam Players
- Steam Visuals
- Steam Themes moods
- Steam Genre
- Steam Sub genre
- Steam Top level genre

### How to use

[](#how-to-use)

Get app id

```
echo \KrepyshSpec\SteamEnums\SteamApp::CSGO->name; // CSGO
echo \KrepyshSpec\SteamEnums\SteamApp::CSGO->value; // 730
```

Get all from ***SteamApp***

```
$all = \KrepyshSpec\SteamEnums\SteamApp::cases();
var_dump($all);

/**
 array(2) {
   [0]=>
   enum(KrepyshSpec\SteamEnums\SteamApp::CSGO)
   [1]=>
   enum(KrepyshSpec\SteamEnums\SteamApp::Dota2)
 }
 **/
```

### Steam App

[](#steam-app)

Total app games ***2***

```
echo SteamApp::Dota2->name // USD
echo SteamApp::Dota2->value; // 570
```

### Steam Currency

[](#steam-currency)

Total currencies ***32***

```
echo SteamCurrency::USD->name; // USD
echo SteamCurrency::USD->value; // 1
```

### Steam Language

[](#steam-language)

Total languages ***28***

```
echo SteamLanguage::English->name; // English
echo SteamLanguage::English->value; // english
```

### Steam Global tag

[](#steam-global-tag)

Total tags ***431***

Using here [Steam browse tag](https://store.steampowered.com/tag/browse/)

```
echo SteamGlobalTag::Survival->name; // Survival
echo SteamGlobalTag::Survival->value; // 1662
```

### Steam Platforms

[](#steam-platforms)

Total platforms ***3***

```
echo SteamPlatform::MacOS->name; // MacOS
echo SteamPlatform::MacOS->value; // mac
```

### Steam Countries

[](#steam-countries)

Total countries ***259***

```
echo SteamCountry::United_States->name; // United_States
echo SteamCountry::United_States->value; // US
```

### Support

[](#support)

For support, email  or telegram @krep1sh

### License

[](#license)

MIT

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity60

Established project with proven stability

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 ~1 days

Total

6

Last Release

1403d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3dfa84d9fdd2b5a9d4c35284554206bcf1cd4bce77db2391700ec23a876266bf?d=identicon)[Krepysh-spec](/maintainers/Krepysh-spec)

---

Tags

steamsteam-apisteam-enumsteam-gamessteam-helpersteam-liststeam-marketsteam-marketplacesteam-platformsteam-toolssteam-valuessteam-worshopsteamkrepyshsteam-enumssteam-marketsteam-platformsteam-categoriessteam-appssteam-liststeam-filterssteam-parsing

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/steam-market-providers-enums/health.svg)

```
[![Health](https://phpackages.com/badges/steam-market-providers-enums/health.svg)](https://phpackages.com/packages/steam-market-providers-enums)
```

###  Alternatives

[thujohn/rss

RSS builder for Laravel 4

72130.0k3](/packages/thujohn-rss)

PHPackages © 2026

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