Another PHP micro-framework

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

This package is auto-updated.

Last update: 2024-05-23 20:55:57 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