switch/kernel

Switch Framework HTTP Application Kernel & PSR-15 Middleware Engine

Maintainers

Package info

github.com/celionatti/switch-kernel

pkg:composer/switch/kernel

Transparency log

Statistics

Installs: 0

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2026-08-14 00:43 UTC

This package is auto-updated.

Last update: 2026-08-14 00:44:47 UTC


README

PSR-15 HTTP Application Kernel powering request/response lifecycles, middleware pipelines, and auto-wired package discovery.

📦 Installation

composer require switch/kernel

🚀 Usage

use Switch\Kernel\App;

$app = new App($container, router: $router);

// Register custom PSR-15 middleware
$app->use(new AuthMiddleware());

// Process request & emit response
$app->run();

📄 License

MIT License.