opgg/riotquest 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

opgg/riotquest

最新稳定版本:v0.9.1

Composer 安装命令:

composer require opgg/riotquest

包简介

RiotQuest, PHP RiotAPI client library that focused on multi request from OP.GG

README 文档

README

Features

  • DTO Support
  • Batch calls (async request using guzzlehttp promise)
    • You can control concurrency sessions

Installation

composer require opgg/riotquest

Example

use RiotQuest\Dto\LolStaticData\Champion\ChampionListDto;
use RiotQuest\Dto\Summoner\SummonerDto;
use RiotQuest\RequestMethod;

function riotApi() {
    return new RiotQuest\AsyncRiotAPI('api_key');
}

/** @var SummonerDto $summonerDto */
$summonerDto = $this->riotApi()->call(new RequestMethod\Summoner\SummonerByName(OPServer::getCurrentPlatform(), "kargnas"));
$this->assertTrue($summonerDto instanceof SummonerDto);
$this->assertTrue($summonerDto->revisionDate instanceof \RiotQuest\Dto\DateTime);

$this->riotApi()
    ->add(new RequestMethod\Runes\RunesBySummoner(OPServer::getCurrentPlatform(), $summonerDto->id),
        function (\RiotQuest\Dto\Runes\RunePagesDto $runePagesDto) use ($summonerDto) {
            var_dump($runePagesDto->summonerId === $summonerDto->id);
            var_dump(array_first($runePagesDto->pages) instanceof \RiotQuest\Dto\Runes\RunePageDto);
        })
    ->add(new RequestMethod\Masteries\MasteriesBySummoner(OPServer::getCurrentPlatform(), $summonerDto->id),
        function (\RiotQuest\Dto\Masteries\MasteryPagesDto $masteryPagesDto) use ($summonerDto) {
            var_dump($masteryPagesDto->summonerId === $summonerDto->id);
            var_dump(array_first($masteryPagesDto->pages) instanceof \RiotQuest\Dto\Masteries\MasteryPageDto);
        })
    ->add(new RequestMethod\Match\MatchesByAccount(OPServer::getCurrentPlatform(), $summonerDto->accountId),
        function (\RiotQuest\Dto\Match\MatchlistDto $matchlist) {
            /** @var \RiotQuest\Dto\Match\MatchDto $match */
            $match = $this->riotApi()->call(new RequestMethod\Match\MatchById(OPServer::getCurrentPlatform(), $matchlist->matches[0]->gameId));
            var_dump($match instanceof \RiotQuest\Dto\Match\MatchDto);

            /** @var \RiotQuest\Dto\Match\Timeline\MatchTimelineDto $timeline */
            $timeline = $this->riotApi()->call(new RequestMethod\Match\TimelineById(OPServer::getCurrentPlatform(), $matchlist->matches[0]->gameId));
            var_dump($timeline instanceof \RiotQuest\Dto\Match\Timeline\MatchTimelineDto);
            var_dump($timeline->frames[0] instanceof \RiotQuest\Dto\Match\Timeline\MatchFrameDto);
        })
    ->exec();

TODO

  • Rate limit
  • PSR-6

统计信息

  • 总下载量: 2.55k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 17
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 17
  • Watchers: 11
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-07-24