jjsquady / round-robin by jjsquady
forked from marcelotk15/round-robin

RoundRobin for Laravel 5.4+.
772
1
3
Package Data
Maintainer Username: jjsquady
Maintainer Contact: marcelotk_15@hotmail.com (Marcelo Augusto)
Package Create Date: 2017-04-23
Package Last Update: 2017-04-27
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:19:52
Package Statistics
Total Downloads: 772
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

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,
  1. Open your config/app.php and add the following to the facades array:
'RoundRobin' => Laravel\RoundRobin\RoundRobinFacade::class,

Controllers and etc

use Laravel\RoundRobin\RoundRobin;

Using (Examples)

Setuping (without Facade):

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$schedule = new RoundRobin($teams)->make();
// or with 'from' static method
$schedule = RoundRobin::from($teams)->make();

With a facade:

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$schedule = RoundRobin::from($teams)->make();

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'];
$schedule = RoundRobin::from($teams)->doNotShuffle()->make();

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'];
$schedule = RoundRobin::from($teams)->shuffle(15)->make();

If you want a double Round-robin:

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$schedule = RoundRobin::from($teams)->doubleRoundRobin()->make();

If you want a get a Schedule Object:

$teams = ['Arsenal', 'Atlético de Madrid', 'Borussia', 'Barcelona','Liverpool', 'Bayer 04', 'Real Madrid'];
$schedule = RoundRobin::from($teams)->makeSchedule();

License

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