gitextract_x0i0506c/ ├── .github/ │ └── workflows/ │ └── php.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── docker/ │ └── php/ │ └── 8.1/ │ └── Dockerfile ├── docker-compose.yml ├── examples/ │ ├── app/ │ │ ├── GetAppList.txt │ │ └── appDetails.txt │ ├── global/ │ │ └── convertId.txt │ ├── group/ │ │ └── GetGroupSummary.txt │ ├── item/ │ │ └── GetPlayerItems.txt │ ├── news/ │ │ └── GetNewsForApp.txt │ ├── package/ │ │ └── packageDetails.txt │ ├── player/ │ │ ├── GetBadges.txt │ │ ├── GetCommunityBadgeProgress.txt │ │ ├── GetOwnedGames.txt │ │ ├── GetPlayerLevelDetails.txt │ │ ├── GetRecentlyPlayedGames.txt │ │ ├── GetSteamLevel.txt │ │ └── IsPlayingSharedGame.txt │ └── user/ │ ├── GetFriendList.txt │ ├── GetPlayerBans.txt │ ├── GetPlayerSummaries.txt │ ├── ResolveVanityURL.txt │ └── stats/ │ ├── GetGlobalAchievementPercentageForApp.txt │ ├── GetPlayerAchievements.txt │ ├── GetSchemaForGame.txt │ ├── GetUserStatsForGame.txt │ └── GetUserStatsForGameAll.txt ├── phpunit.xml ├── rector.php ├── src/ │ ├── Syntax/ │ │ └── SteamApi/ │ │ ├── Client.php │ │ ├── Containers/ │ │ │ ├── Achievement.php │ │ │ ├── App.php │ │ │ ├── BaseContainer.php │ │ │ ├── Game.php │ │ │ ├── GameDetails.php │ │ │ ├── Group/ │ │ │ │ ├── Details.php │ │ │ │ └── MemberDetails.php │ │ │ ├── Group.php │ │ │ ├── Id.php │ │ │ ├── Item.php │ │ │ ├── Package.php │ │ │ ├── Player/ │ │ │ │ └── Level.php │ │ │ └── Player.php │ │ ├── Exceptions/ │ │ │ ├── ApiArgumentRequired.php │ │ │ ├── ApiCallFailedException.php │ │ │ ├── ClassNotFoundException.php │ │ │ ├── InvalidApiKeyException.php │ │ │ └── UnrecognizedId.php │ │ ├── Facades/ │ │ │ └── SteamApi.php │ │ ├── Inventory.php │ │ ├── Resources/ │ │ │ └── countries.json │ │ ├── Steam/ │ │ │ ├── App.php │ │ │ ├── Group.php │ │ │ ├── Item.php │ │ │ ├── News.php │ │ │ ├── Package.php │ │ │ ├── Player.php │ │ │ ├── User/ │ │ │ │ └── Stats.php │ │ │ └── User.php │ │ ├── SteamApiServiceProvider.php │ │ └── SteamId.php │ └── config/ │ ├── .gitkeep │ └── config.php └── tests/ ├── AppTest.php ├── BaseTester.php ├── GroupTest.php ├── IdTest.php ├── ItemTest.php ├── NewsTest.php ├── PackageTest.php ├── PlayerTest.php ├── UserStatsTest.php └── UserTest.php