├── .gitignore ├── LICENSE ├── README.md ├── SteamApi ├── App.php ├── Client.php ├── Containers │ ├── Achievement.php │ ├── App.php │ ├── Game.php │ ├── Player.php │ └── Player │ │ ├── Bans.php │ │ └── Level.php ├── Exceptions │ ├── ApiArgumentException.php │ └── ApiCallFailedException.php ├── Interfaces │ ├── IApp.php │ ├── INews.php │ ├── IPlayer.php │ ├── IUser.php │ └── User │ │ └── IStats.php ├── News.php ├── Player.php ├── User.php └── User │ └── Stats.php ├── composer.json ├── composer.lock ├── phpunit.xml ├── test-steam-api-key.php_sample ├── tests ├── SteamApi │ ├── AppTest.php │ ├── ClientTest.php │ ├── NewsTest.php │ ├── PlayerTest.php │ ├── User │ │ └── StatsTest.php │ └── UserTest.php ├── TestBootstrap.php └── UnitTestCase.php └── wercker.yml /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | test-steam-api-key.php 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/README.md -------------------------------------------------------------------------------- /SteamApi/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/App.php -------------------------------------------------------------------------------- /SteamApi/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Client.php -------------------------------------------------------------------------------- /SteamApi/Containers/Achievement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Containers/Achievement.php -------------------------------------------------------------------------------- /SteamApi/Containers/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Containers/App.php -------------------------------------------------------------------------------- /SteamApi/Containers/Game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Containers/Game.php -------------------------------------------------------------------------------- /SteamApi/Containers/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Containers/Player.php -------------------------------------------------------------------------------- /SteamApi/Containers/Player/Bans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Containers/Player/Bans.php -------------------------------------------------------------------------------- /SteamApi/Containers/Player/Level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Containers/Player/Level.php -------------------------------------------------------------------------------- /SteamApi/Exceptions/ApiArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Exceptions/ApiArgumentException.php -------------------------------------------------------------------------------- /SteamApi/Exceptions/ApiCallFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Exceptions/ApiCallFailedException.php -------------------------------------------------------------------------------- /SteamApi/Interfaces/IApp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Interfaces/IApp.php -------------------------------------------------------------------------------- /SteamApi/Interfaces/INews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Interfaces/INews.php -------------------------------------------------------------------------------- /SteamApi/Interfaces/IPlayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Interfaces/IPlayer.php -------------------------------------------------------------------------------- /SteamApi/Interfaces/IUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Interfaces/IUser.php -------------------------------------------------------------------------------- /SteamApi/Interfaces/User/IStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Interfaces/User/IStats.php -------------------------------------------------------------------------------- /SteamApi/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/News.php -------------------------------------------------------------------------------- /SteamApi/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/Player.php -------------------------------------------------------------------------------- /SteamApi/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/User.php -------------------------------------------------------------------------------- /SteamApi/User/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/SteamApi/User/Stats.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPr00f/steam-web-api-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /test-steam-api-key.php_sample: -------------------------------------------------------------------------------- 1 |