Heads-up: we just opened the gates to MonkeysLegion, the feather-light PHP 8+ framework that slices boilerplate, bakes in DevOps, and hits commit β cloud in minutes.
Weβre handing out Founding Legionnaire badges to the first 100 contributors. Want your name in the hall of fame, plus a T-shirt and sticker pack? Read on β¬οΈ
website: https://monkeyslegion.com/
github: https://github.com/MonkeysCloud/MonkeysLegion-Skeleton
π₯ 4 Irresistible Reasons to Jump In β Right Now
| Whatβs in it for you | |
|---|---|
| π₯ | Instant impact β every merge is auto-deployed to MonkeysCloud within 48 h. |
| π‘ | Mentor-grade reviews β pair program with senior maintainers, level-up fast. |
| π | Early-builder swag β get the limited βFounding Legionnaireβ T-shirt & stickers. |
| π | Portfolio power β public commits in a production framework running on Google Cloud. |
Fun fact: the CLI youβll touch today ships live traffic for agencies in πΊπΈ, πͺπΊ, and π―π΅.
π₯ What Makes MonkeysLegion Different?
- 1-ms router (benchmarked on PHP 8.3 JIT)
- Config-first DI that never hides your services in magic attributes
-
Zero-config Docker & K8s manifests β
ml up --cloud=localand youβre live -
Built-in observability hook (
ml telemetry:enable) β push traces to Grafana in one line - MIT license β no corporate handcuffs, forever
Weβre tiny today (6β Repo, 60 commits)β¦ that means your PR could literally double our capabilities.
πΊ Pick Your Quests (Good-First-Issues are Waiting)
| Track | Starter Ticket (easy) | Hero Ticket (ambitious) |
|---|---|---|
| Backend | feat: add JWT auth middleware |
Live DB migrations hot-reload |
| DevOps | ci: add Windows runner |
Autoscaling Helm chart + Prometheus metrics |
| DX & Docs | docs: dark-mode code blocks |
30-min crash-course video for Laravel devs |
| Testing | test: bump DI coverage to 90 % |
Property-based testing suite w/ Pest |
| Community | meta: weekly issue triage |
Host a live coding stream |
Everything tagged good first issue requires ONE file change or less. β³
π‘ Quick Win #1 β Ship Your First CLI Command
# 1οΈβ£ Scaffold it
php vendor/bin/ml make:command HelloWorldCommand
<?php
// 2οΈβ£ Code it
class HelloWorldCommand extends Command {
protected string $signature = 'demo:hello {name}';
protected string $description = 'Give a warm Legion welcome';
public function handle(): int {
$this->info("π Welcome, {$this->argument('name')}! π");
return self::SUCCESS;
}
}
# 3οΈβ£ Run it
docker compose exec app php vendor/bin/ml demo:hello Ada
# π Welcome, Ada! π
Open a PR titled feat(cli): hello demo command β weβll celebrate in #show-and-tell. π₯³
π‘ Quick Win #2 β Unit-Test the Router in 25 ms
use MonkeysLegion\Router\Router;
use PHPUnit\Framework\TestCase;
final class RouterTest extends TestCase {
public function testPing() {
$r = new Router();
$r->get('/ping', fn () => 'pong');
$resp = $r->dispatch('GET', '/ping');
$this->assertSame('pong', (string) $resp->getBody());
}
}
βοΈ 6-Line Contribution Workflow
git clone https://github.com/<YOU>/monkeyslegion && cd monkeyslegion # 1
composer install --prefer-dist # 2
git checkout -b feat/my-awesome-patch # 3
# hack β test β commit
git commit -am "feat: add X" # 4
git push origin feat/my-awesome-patch # 5
# open PR & chat in Slack # 6
CI (Psalm + PHP-CS-Fixer + PHPUnit) runs in 2 min β stay green and youβre merged.
π¬ Where the Party Happens
π Sign up with your GitHub email at monkeyslegion.slack.com β no invite code, no fuss.
π Your Next Step (Takes 120 Seconds)
- Jump into Slack β say hi in #hello-world
- Star β the repo & claim a good first issue
- Open your first PR β earn the Founding Legionnaire badge, swag & eternal bragging rights
Letβs redefine what βfastβ means in PHP, together.
See you on the commit log β and donβt forget your banana-powered energy drink. ππ
Top comments (0)