Version v0.2
Welcome to bracket generator for PHP7 repo. This library uses HTML tables to render nice and clean game brackets. You can create brackets based on participant count, match list or even custom tree. Bracket visuals are also completly customizable.
Please, refer mainly to the wiki pages.
The easiest way to get this library is to use Composer. While
having Composer installed it takes only composer require dolejska-daniel/bracket-generator
and composer update
to get the library up and ready!
If you are not fan of Composer, you can download whole repository in .zip archive
or clone the repository using Git - git clone https://github.com/dolejska-daniel/bracket-generator
.
But in this case, you will have to create your own autoload function.
All it takes to create a bracket is this:
use BracketGenerator\Bracket;
echo Bracket::create(8);
And what will you end up with after this? Take a look:
It looks a bit empty so you can fill it up very easily - let's start from the beginning:
use BracketGenerator\Bracket;
$bracket = Bracket::create(8);
$bracket->fillByParticipantList([
[ 'Participant 1', 0 ],
[ 'Participant 2', 0 ],
[ 'Participant 3', 0 ],
[ 'Participant 4', 0 ],
[ 'Participant 5', 0 ],
[ 'Participant 6', 0 ],
[ 'Participant 7', 0 ],
[ 'Participant 8', 0 ],
]);
echo $bracket;
And that gives us:
Please remember that the bracket visuals are completly customizable. This is just an example.
For more, please see the wiki pages.