marcelotk15 / round-robin by marcelotk

RoundRobin for Laravel.
5,245
4
1
Package Data
Maintainer Username: marcelotk
Maintainer Contact: marcelotk_15@hotmail.com (Marcelo Augusto)
Package Create Date: 2017-02-16
Package Last Update: 2019-06-30
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-26 03:00:23
Package Statistics
Total Downloads: 5,245
Monthly Downloads: 22
Daily Downloads: 4
Total Stars: 4
Total Watchers: 1
Total Forks: 6
Total Open Issues: 1

Round-Robin (Laravel 5 Package)

Latest Stable Version Total Downloads Latest Unstable Version License

Round-Robin is an easy way to create schedule with round-robin(rr) technique. I used the mnito's base code for this. Look here: https://github.com/mnito/round-robin

Installation

  1. In order to install Laravel Round-Robin, just add the following to your composer.json. Then run composer update:
"marcelotk15/round-robin": "0.1.*"

or run composer require marcelotk15/round-robin

  1. Open your config/app.php and add the following to the providers array:
Laravel\RoundRobin\RoundRobinServiceProvider::class,

Controllers and etc

use Laravel\RoundRobin\RoundRobin;

Using (Examples)

Setuping:

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$roundRobin = new RoundRobin($teams);
$roundRobin = $roundRobin->build();

Generate a schedule without randomly shuffling the teams using the $shuffle boolean parameter:

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$roundRobin = new RoundRobin($teams);
$rounRobin->doNotShuffle();
$roundRobin = $roundRobin->build();

Use your own seed with the $seed integer parameter for predetermined shuffling:

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$roundRobin = new RoundRobin($teams);
$rounRobin->shuffle(15);
$roundRobin = $roundRobin->build();

If you want a double Round-robin:

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$roundRobin = new RoundRobin($teams);
$rounRobin->doubleRoundRobin();
$roundRobin = $roundRobin->build();

License

Laravel Round-Robin is free software distributed under the terms of the MIT license.