burak-sevinc/tournament-round-generator
Composer 安装命令:
composer require burak-sevinc/tournament-round-generator
包简介
A PHP library for generating tournament rounds with helpful calculations.
README 文档
README
A PHP library for generating tournament rounds with helpful calculations
Getting Started
composer require burak-sevinc/tournament-round-generator
Usage
Basic bracket skeleton
use BurakSevinc\TournamentRoundGenerator\SingleElimination; $singleElimination = new SingleElimination(8); $roundCount = $singleElimination->getRoundCount(); $roundsArr = $singleElimination->getRounds(); $matches = $singleElimination->getMatches(); $roundOne = $singleElimination->getMatchesByRoundId(1);
Teams, members, and seeding
use BurakSevinc\TournamentRoundGenerator\Member; use BurakSevinc\TournamentRoundGenerator\SingleElimination; use BurakSevinc\TournamentRoundGenerator\Team; $teams = [ new Team(1, 'Alpha', 1, [new Member(101, 'Player A')]), new Team(2, 'Beta', 2, [new Member(102, 'Player B')]), // ... ]; $bracket = SingleElimination::fromTeams($teams); // or $bracket = (new SingleElimination(8))->setTeams($teams); $team = $bracket->getTeamById(1); $members = $bracket->getMembersByTeamId(1); $teamsInMatch = $bracket->getTeamsInMatch(1);
Bracket links for frontend line drawing
$bracket->linkMatches(); $match = $bracket->getMatchById(5); $match->getPrevMatchIds(); // [1, 2] $match->getNextMatchId(); // 7 $feeders = $bracket->getFeederMatches(5); $nextMatch = $bracket->getNextMatch(5);
Each match array includes positionInRound, prevMatchIds, and nextMatchId so a frontend can draw bracket connectors.
Match URLs
use BurakSevinc\TournamentRoundGenerator\Support\TemplateMatchUrlGenerator; $bracket ->setMatchUrlGenerator(new TemplateMatchUrlGenerator('/tournament/match/{matchId}')) ->applyMatchUrls(); $url = $bracket->getMatchById(1)?->getUrl();
Roadmap
- Single elimination
- Double elimination
- Round Robin
Contact
Burak Sevinç - X - LinkedIn - info@buraksevinc.dev
burak-sevinc/tournament-round-generator 适用场景与选型建议
burak-sevinc/tournament-round-generator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 3, 最近一次更新时间为 2024 年 01 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 burak-sevinc/tournament-round-generator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 burak-sevinc/tournament-round-generator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 18
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-01-15