├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── lib └── Zyberspace │ └── SteamWebApi │ ├── AbstractInterface.php │ ├── Client.php │ ├── InterfaceGenerator.php │ └── Interfaces │ ├── IAccountRecoveryService.php │ ├── ICSGOServers_730.php │ ├── ICSGOTournaments_730.php │ ├── ICheatReportingService.php │ ├── IDOTA2AutomatedTourney_205790.php │ ├── IDOTA2AutomatedTourney_570.php │ ├── IDOTA2Fantasy_205790.php │ ├── IDOTA2Fantasy_570.php │ ├── IDOTA2MatchStats_205790.php │ ├── IDOTA2MatchStats_570.php │ ├── IDOTA2Match_205790.php │ ├── IDOTA2Match_570.php │ ├── IDOTA2StreamSystem_205790.php │ ├── IDOTA2StreamSystem_570.php │ ├── IDOTA2Teams_205790.php │ ├── IDOTA2Teams_570.php │ ├── IDOTA2Ticket_205790.php │ ├── IDOTA2Ticket_570.php │ ├── IEconDOTA2_205790.php │ ├── IEconDOTA2_570.php │ ├── IEconItems_205790.php │ ├── IEconItems_218620.php │ ├── IEconItems_221540.php │ ├── IEconItems_238460.php │ ├── IEconItems_440.php │ ├── IEconItems_570.php │ ├── IEconItems_620.php │ ├── IEconItems_730.php │ ├── IEconItems_841.php │ ├── IEconService.php │ ├── IGCVersion_205790.php │ ├── IGCVersion_440.php │ ├── IGCVersion_570.php │ ├── IGCVersion_730.php │ ├── IGameServersService.php │ ├── IInventoryService.php │ ├── IPlayerService.php │ ├── IPortal2Leaderboards_620.php │ ├── IPortal2Leaderboards_841.php │ ├── IPublishedFileService.php │ ├── ISteamApps.php │ ├── ISteamBitPay.php │ ├── ISteamCDN.php │ ├── ISteamDirectory.php │ ├── ISteamEconomy.php │ ├── ISteamEnvoy.php │ ├── ISteamNews.php │ ├── ISteamPayPalPaymentsHub.php │ ├── ISteamRemoteStorage.php │ ├── ISteamUser.php │ ├── ISteamUserAuth.php │ ├── ISteamUserOAuth.php │ ├── ISteamUserStats.php │ ├── ISteamWebAPIUtil.php │ ├── ISteamWebUserPresenceOAuth.php │ ├── ITFItems_440.php │ ├── ITFPromos_205790.php │ ├── ITFPromos_440.php │ ├── ITFPromos_570.php │ ├── ITFPromos_620.php │ ├── ITFPromos_730.php │ ├── ITFPromos_841.php │ └── ITFSystem_440.php └── phpdoc.dist.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /.apikey 3 | /vendor/ 4 | /phpdoc/ 5 | /.project 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/composer.json -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/AbstractInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/AbstractInterface.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Client.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/InterfaceGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/InterfaceGenerator.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IAccountRecoveryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IAccountRecoveryService.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ICSGOServers_730.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ICSGOServers_730.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ICSGOTournaments_730.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ICSGOTournaments_730.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ICheatReportingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ICheatReportingService.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2AutomatedTourney_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2AutomatedTourney_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2AutomatedTourney_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2AutomatedTourney_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Fantasy_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Fantasy_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Fantasy_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Fantasy_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2MatchStats_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2MatchStats_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2MatchStats_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2MatchStats_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Match_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Match_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Match_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Match_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2StreamSystem_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2StreamSystem_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2StreamSystem_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2StreamSystem_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Teams_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Teams_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Teams_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Teams_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Ticket_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Ticket_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Ticket_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Ticket_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconDOTA2_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconDOTA2_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconDOTA2_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconDOTA2_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_218620.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_218620.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_221540.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_221540.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_238460.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_238460.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_440.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_440.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_620.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_620.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_730.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_730.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_841.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconItems_841.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IEconService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IEconService.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_440.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_440.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_730.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IGCVersion_730.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IGameServersService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IGameServersService.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IInventoryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IInventoryService.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IPlayerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IPlayerService.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IPortal2Leaderboards_620.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IPortal2Leaderboards_620.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IPortal2Leaderboards_841.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IPortal2Leaderboards_841.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/IPublishedFileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/IPublishedFileService.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamApps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamApps.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamBitPay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamBitPay.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamCDN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamCDN.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamDirectory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamDirectory.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamEconomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamEconomy.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamEnvoy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamEnvoy.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamNews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamNews.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamPayPalPaymentsHub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamPayPalPaymentsHub.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamRemoteStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamRemoteStorage.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamUser.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamUserAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamUserAuth.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamUserOAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamUserOAuth.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamUserStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamUserStats.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamWebAPIUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamWebAPIUtil.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ISteamWebUserPresenceOAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ISteamWebUserPresenceOAuth.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFItems_440.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFItems_440.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_205790.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_205790.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_440.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_440.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_570.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_570.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_620.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_620.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_730.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_730.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_841.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFPromos_841.php -------------------------------------------------------------------------------- /lib/Zyberspace/SteamWebApi/Interfaces/ITFSystem_440.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/lib/Zyberspace/SteamWebApi/Interfaces/ITFSystem_440.php -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyberspace/php-steam-web-api-client/HEAD/phpdoc.dist.xml --------------------------------------------------------------------------------