mormanski/fpl-lib
Composer 安装命令:
composer require mormanski/fpl-lib
包简介
PHP Library to access the undocumented https://fantasy.premierleague.com API
README 文档
README
PHP Library to access the undocumented https://fantasy.premierleague.com API
Installation
Using composer
composer require mormanski/fpl-lib
Using github repository
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mormanski/fpl-lib"
}
],
"require": {
"mormasnki/fpl-lib": "master"
}
}
Using the library
use Mormanski\FplLib\FplLib;
$fpl = new FplLib();
$client = $fpl->getClient();
API Endpoints
https://fantasy.premierleague.com/api/bootstrap-static
$bootstrapStatic = $client->bootstrapStatic();
https://fantasy.premierleague.com/api/leagues-classic-standings/{leagueId}
$leaguesClassicStandings = $client->leaguesClassicStandings(['leagueId' => '123123']);
https://fantasy.premierleague.com/api/entry/{entryId}
$entry = $client->entry(['entryId' => '1234567']);
https://fantasy.premierleague.com/api/entry/{entryId}/history
$entryHistory = $client->entryHistory(['entryId' => '1234567']);
https://fantasy.premierleague.com/api/entry/{id}/event/{eventId}/picks
$data = $client->entryPicks(['entryId' => $entryId, 'eventId' => $eventId]);
https://fantasy.premierleague.com/api/element-summary/{elementId}
$elementSummary = $client->elementSummary(['elementId' => '123']);
Terminology
- An entry is equivalent to a contestant in the competition
- An element is equivalent to a player
- An event is equivalent to a game week, for instance eventId => 2 denotes game week 2.
统计信息
- 总下载量: 116
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0
- 更新时间: 2017-10-12