jadgray/full-time-api
Composer 安装命令:
composer require jadgray/full-time-api
包简介
A simple tool to help obtain fixture information from the FA Full-Time system.
README 文档
README
A simple tool to help obtain fixture information from the FA Full-Time system.
Requirements
- PHP >= 8.1
Installation
composer require jadgray/full-time-api
Basic information needed for a request
To obtain information from the Full-Time system you will need a Season ID and Group ID, these can be obtained by visiting your desired division you'd like to access and extracting these from the URL.
e.g. selectedSeason=1234 & FixtureGroupKey=1_234
Get a team list
use Jadgray\FullTimeApi\Division; $teams = (new Division())->getTeams(1234, '1_234');
Get unformatted fixtures
use Jadgray\FullTimeApi\Division; $fixtures = (new Division())->getFixtures(1234, '1_234');
Get formatted fixtures
use Jadgray\FullTimeApi\Division; $fixtures = (new Division())->getFormattedFixtures(1234, '1_234');
Get unformatted results
use Jadgray\FullTimeApi\Division; $results = (new Division())->getResults(1234, '1_234');
Get formatted results
use Jadgray\FullTimeApi\Division; $results = (new Division())->getFormattedResults(1234, '1_234');
统计信息
- 总下载量: 101
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-06-12