techno/framework

This package is abandoned and no longer maintained. No replacement package was suggested.

1.2.0 2024-01-14 11:50 UTC

This package is auto-updated.

Last update: 2025-05-06 16:44:23 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,
];