Another PHP micro-framework

dev-master 2022-09-23 17:09 UTC

This package is auto-updated.

Last update: 2025-03-23 22:50:41 UTC


README

Tests



Another small micro framework.

Install

composer require ubermanu/kek

Example

require_once 'vendor/autoload.php';

$app = app();
$app->get('/ping', fn() => 'pong');

echo $app->run()->body; // pong