PHPackages                             marcelotk15/round-robin - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. marcelotk15/round-robin

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

marcelotk15/round-robin
=======================

RoundRobin for Laravel 5.8+.

0.1.0(9y ago)55.8k6[1 issues](https://github.com/marcelotk15/round-robin/issues)MITPHPPHP &gt;=5.6.4

Since Feb 17Pushed 6y ago1 watchersCompare

[ Source](https://github.com/marcelotk15/round-robin)[ Packagist](https://packagist.org/packages/marcelotk15/round-robin)[ RSS](/packages/marcelotk15-round-robin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (6)Used By (0)

Round-Robin (Laravel 5 Package)
===============================

[](#round-robin-laravel-5-package)

[![Latest Stable Version](https://camo.githubusercontent.com/7eddf8225b12508ffc87605764381fb6235370472e4a9adb4d38a92b26c34e4f/68747470733a2f2f706f7365722e707567782e6f72672f6d617263656c6f746b31352f726f756e642d726f62696e2f762f737461626c65)](https://packagist.org/packages/marcelotk15/round-robin) [![Total Downloads](https://camo.githubusercontent.com/90e257d75f1f9371314677df9d428bf7fdd36943407cb1b011a8de2d2cd6be84/68747470733a2f2f706f7365722e707567782e6f72672f6d617263656c6f746b31352f726f756e642d726f62696e2f646f776e6c6f616473)](https://packagist.org/packages/marcelotk15/round-robin)[![Latest Unstable Version](https://camo.githubusercontent.com/592f263421199106144fd35e8d735f1eefc402a0790f75c07efce32605bb375c/68747470733a2f2f706f7365722e707567782e6f72672f6d617263656c6f746b31352f726f756e642d726f62696e2f762f756e737461626c65)](https://packagist.org/packages/marcelotk15/round-robin)[![License](https://camo.githubusercontent.com/407970ebb68b666ba50b23b7553ac0d602cf8647a0cdf5dd2022c2843b7b893e/68747470733a2f2f706f7365722e707567782e6f72672f6d617263656c6f746b31352f726f756e642d726f62696e2f6c6963656e7365)](https://packagist.org/packages/marcelotk15/round-robin)[![StyleCI](https://camo.githubusercontent.com/f79c3a0294b8800782a1dd366a632de9d9a60062d8c5ba5b97e4794d574009dd/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f38323233373033352f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/82237035)

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:

Installation
------------

[](#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`

2. Open your `config/app.php` and add the following to the `providers` array:

```
Laravel\RoundRobin\RoundRobinServiceProvider::class,
```

3. Open your `config/app.php` and add the following to the `facades` array:

```
'RoundRobin' => Laravel\RoundRobin\RoundRobinFacade::class,
```

Controllers and etc
-------------------

[](#controllers-and-etc)

```
use Laravel\RoundRobin\RoundRobin;
```

Using (Examples)
----------------

[](#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
-------

[](#license)

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

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

3367d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ded0cb7728158a99e940e57f9dfb507e74f4df8c5369427b94ead7fbaf3e9764?d=identicon)[marcelotk](/maintainers/marcelotk)

---

Top Contributors

[![marcelotk15](https://avatars.githubusercontent.com/u/4443094?v=4)](https://github.com/marcelotk15 "marcelotk15 (15 commits)")[![jjcodes78](https://avatars.githubusercontent.com/u/12722517?v=4)](https://github.com/jjcodes78 "jjcodes78 (3 commits)")

---

Tags

laravelroundrobin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/marcelotk15-round-robin/health.svg)

```
[![Health](https://phpackages.com/badges/marcelotk15-round-robin/health.svg)](https://phpackages.com/packages/marcelotk15-round-robin)
```

###  Alternatives

[highideas/laravel-users-online

This package will provide an online users management.

203113.2k1](/packages/highideas-laravel-users-online)[stephenjude/filament-blog

Filament Blog Builder

20317.8k](/packages/stephenjude-filament-blog)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
