depth/techno

This package is abandoned and no longer maintained. The author suggests using the techno/framework package instead.

1.2.0 2024-01-14 11:50 UTC

This package is auto-updated.

Last update: 2024-03-15 13:04:06 UTC


README

💀 Dead simple PHP microframework

// index.php
$app = new Depth\Techno\App();
$app->run();

Router

// router.php
return [
    'GET /' => Index::class,
    'POST /action' => Action::class,
];