├── .travis └── phpunit.coverage.xml ├── LICENSE ├── README.md ├── composer.json └── src ├── Apis ├── AbstractApi.php ├── Diablo │ ├── ActApi.php │ ├── ArtisanAndRecipeApi.php │ ├── CharacterClassAndSkillApi.php │ ├── FollowerApi.php │ ├── ItemApi.php │ ├── ItemTypeApi.php │ ├── OAuthApi.php │ └── ProfileApi.php ├── OAuth │ ├── AccountApi.php │ └── ProfileApi.php ├── Starcraft │ ├── DataResourcesApi.php │ ├── LadderApi.php │ └── ProfileApi.php └── Warcraft │ ├── AchievementApi.php │ ├── AuctionApi.php │ ├── BossApi.php │ ├── ChallengeModeApi.php │ ├── CharacterProfileApi.php │ ├── ConnectedRealmApi.php │ ├── DataResourcesApi.php │ ├── GuildProfileApi.php │ ├── ItemApi.php │ ├── MountApi.php │ ├── MythicChallengeModeApi.php │ ├── MythicKeystoneLeaderboardApi.php │ ├── PetApi.php │ ├── PlayableClassApi.php │ ├── PlayableSpecializationApi.php │ ├── PvpApi.php │ ├── QuestApi.php │ ├── RealmApi.php │ ├── RealmStatusApi.php │ ├── RecipeApi.php │ ├── RegionApi.php │ ├── SpellApi.php │ ├── WowTokenApi.php │ └── ZoneApi.php ├── Exceptions ├── OAuthException.php └── UnavailableRegionException.php ├── OAuth2 └── BattleNetProvider.php ├── Regions ├── CN.php ├── EU.php ├── KR.php ├── RegionInterface.php ├── SEA.php └── US.php └── Utils.php /.travis/phpunit.coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/.travis/phpunit.coverage.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/composer.json -------------------------------------------------------------------------------- /src/Apis/AbstractApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/AbstractApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/ActApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/ActApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/ArtisanAndRecipeApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/ArtisanAndRecipeApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/CharacterClassAndSkillApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/CharacterClassAndSkillApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/FollowerApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/FollowerApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/ItemApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/ItemApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/ItemTypeApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/ItemTypeApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/OAuthApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/OAuthApi.php -------------------------------------------------------------------------------- /src/Apis/Diablo/ProfileApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Diablo/ProfileApi.php -------------------------------------------------------------------------------- /src/Apis/OAuth/AccountApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/OAuth/AccountApi.php -------------------------------------------------------------------------------- /src/Apis/OAuth/ProfileApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/OAuth/ProfileApi.php -------------------------------------------------------------------------------- /src/Apis/Starcraft/DataResourcesApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Starcraft/DataResourcesApi.php -------------------------------------------------------------------------------- /src/Apis/Starcraft/LadderApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Starcraft/LadderApi.php -------------------------------------------------------------------------------- /src/Apis/Starcraft/ProfileApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Starcraft/ProfileApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/AchievementApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/AchievementApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/AuctionApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/AuctionApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/BossApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/BossApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/ChallengeModeApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/ChallengeModeApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/CharacterProfileApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/CharacterProfileApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/ConnectedRealmApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/ConnectedRealmApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/DataResourcesApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/DataResourcesApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/GuildProfileApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/GuildProfileApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/ItemApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/ItemApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/MountApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/MountApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/MythicChallengeModeApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/MythicChallengeModeApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/MythicKeystoneLeaderboardApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/MythicKeystoneLeaderboardApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/PetApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/PetApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/PlayableClassApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/PlayableClassApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/PlayableSpecializationApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/PlayableSpecializationApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/PvpApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/PvpApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/QuestApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/QuestApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/RealmApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/RealmApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/RealmStatusApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/RealmStatusApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/RecipeApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/RecipeApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/RegionApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/RegionApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/SpellApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/SpellApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/WowTokenApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/WowTokenApi.php -------------------------------------------------------------------------------- /src/Apis/Warcraft/ZoneApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Apis/Warcraft/ZoneApi.php -------------------------------------------------------------------------------- /src/Exceptions/OAuthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Exceptions/OAuthException.php -------------------------------------------------------------------------------- /src/Exceptions/UnavailableRegionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Exceptions/UnavailableRegionException.php -------------------------------------------------------------------------------- /src/OAuth2/BattleNetProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/OAuth2/BattleNetProvider.php -------------------------------------------------------------------------------- /src/Regions/CN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Regions/CN.php -------------------------------------------------------------------------------- /src/Regions/EU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Regions/EU.php -------------------------------------------------------------------------------- /src/Regions/KR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Regions/KR.php -------------------------------------------------------------------------------- /src/Regions/RegionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Regions/RegionInterface.php -------------------------------------------------------------------------------- /src/Regions/SEA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Regions/SEA.php -------------------------------------------------------------------------------- /src/Regions/US.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Regions/US.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyggen/bnet/HEAD/src/Utils.php --------------------------------------------------------------------------------