techno/framework

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

Maintainers

Package info

github.com/bvlinsky/techno

pkg:composer/techno/framework

Statistics

Installs: 18

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

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