PHPackages                             dan-powell/jellies - 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. [Framework](/categories/framework)
4. /
5. dan-powell/jellies

ActiveLibrary[Framework](/categories/framework)

dan-powell/jellies
==================

A jellyrific MMO game for Laravel 5

v0.2.0(8y ago)048MITCSS

Since May 1Pushed 8y ago1 watchersCompare

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

READMEChangelogDependencies (6)Versions (3)Used By (0)

Jellies
=======

[](#jellies)

A browser-based MMO with jellies &amp; sundry.

WIP
===

[](#wip)

This software is pre-alpha, don't bother to use it just yet...

Install
=======

[](#install)

#### Install using composer

[](#install-using-composer)

`composer require dan-powell/jellies`

#### Add service providers to `config/app.php`

[](#add-service-providers-to-configappphp)

```
// Jellies Service Provider
DanPowell\Jellies\JelliesServiceProvider::class,

// Third Party
Collective\Html\HtmlServiceProvider::class,
Krucas\Notification\NotificationServiceProvider::class,

```

#### Add aliases to `config/app.php`

[](#add-aliases-to-configappphp)

```
// Jellies

// Third Party
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
'Notification' => Krucas\Notification\Facades\Notification::class,

```

#### Add middleware to `app/Http/Kernel.php`

[](#add-middleware-to-apphttpkernelphp)

```
protected $middlewareGroups = [
    'web' => [
        ...
        \Illuminate\Session\Middleware\StartSession::class,
        \Krucas\Notification\Middleware\NotificationMiddleware::class,

```

Kernel middleware array (must be placed after 'Illuminate\\Session\\Middleware\\StartSession' middleware)

#### Publish assets

[](#publish-assets)

```
php artisan vendor:publish --tag='database'

```

#### Run migrations

[](#run-migrations)

```
php artisan migrate

```

#### Change default auth model in `config/auth.php`

[](#change-default-auth-model-in-configauthphp)

```
'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => DanPowell\Jellies\Models\User::class,
    ],

```

#### Add command classes to `app/Console/Kernel.php`

[](#add-command-classes-to-appconsolekernelphp)

```
use DanPowell\Jellies\Console\Commands\Incursion\IncursionProcessEncounters;
use DanPowell\Jellies\Console\Commands\User\UserAddAction;
use DanPowell\Jellies\Console\Commands\User\UserAttack;

class Kernel extends ConsoleKernel
{
    protected $commands = [
        IncursionProcessEncounters::class,
        UserAddAction::class,
        UserAttack::class
    ];

```

#### Add scheduled tasks to `app/Console/Kernel.php`

[](#add-scheduled-tasks-to-appconsolekernelphp)

```
protected function schedule(Schedule $schedule)
{
    $schedule->command('incursion:encounters --queue')->everyFiveMinutes();
    $schedule->command('user:actions --queue')->hourly();
}

```

Update
======

[](#update)

#### publish assets

[](#publish-assets-1)

```
php artisan vendor:publish --tag='database' --force

```

#### migrations

[](#migrations)

```
php artisan migrate

```

Seeding
=======

[](#seeding)

#### publish database

[](#publish-database)

```
php artisan vendor:publish --tag='database' --force

```

#### Add seeder to `database/seeds/DatabaseSeeder.php`

[](#add-seeder-to-databaseseedsdatabaseseederphp)

```
$this->call('JelliesSeeder');

```

#### Seed

[](#seed)

```
composer dump-autoload
php artisan db:seed

```

Testing
=======

[](#testing)

#### Publish tests

[](#publish-tests)

```
php artisan vendor:publish --tag='tests' --force

```

#### Add testing database to `config/database.php`

[](#add-testing-database-to-configdatabasephp)

```
    'testing' => [
        ...
        'database'  => 'testing',
        ...
    ],

```

#### Add modules to `test/functional.suite.yml`

[](#add-modules-to-testfunctionalsuiteyml)

```
    modules:
      enabled:
        - Laravel5:
            environment_file: .env.testing

```

#### Create `.env.testing`

[](#create-envtesting)

```
    APP_ENV=testing
    APP_DEBUG=true
    APP_KEY=

    BASE_URL=

    DB_HOST=localhost
    DB_DATABASE=testing
    DB_USERNAME=homestead
    DB_PASSWORD=secret

    CACHE_DRIVER=file
    SESSION_DRIVER=file

```

#### Migrate

[](#migrate)

```
php artisan migrate --database=testing

```

#### Run tests

[](#run-tests)

```
php ./vendor/bin/codecept run

```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~12 days

Total

2

Last Release

3282d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a3aa93ba846775b88f8c71c2af5c6a676558abb237d98033356583190d48d78d?d=identicon)[dan-powell](/maintainers/dan-powell)

---

Top Contributors

[![dan-powell](https://avatars.githubusercontent.com/u/1708759?v=4)](https://github.com/dan-powell "dan-powell (7 commits)")

---

Tags

laravelgamemmo

###  Code Quality

TestsCodeception

### Embed Badge

![Health badge](/badges/dan-powell-jellies/health.svg)

```
[![Health](https://phpackages.com/badges/dan-powell-jellies/health.svg)](https://phpackages.com/packages/dan-powell-jellies)
```

###  Alternatives

[pingpong/modules

Laravel Modules

592188.7k13](/packages/pingpong-modules)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)

PHPackages © 2026

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