techno/framework

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

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 1

pkg:composer/techno/framework

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,
];