Skip to content
This repository was archived by the owner on Apr 29, 2025. It is now read-only.

Latest commit

 

History

History
19 lines (15 loc) · 236 Bytes

File metadata and controls

19 lines (15 loc) · 236 Bytes

Depth\Techno

💀 Dead simple PHP microframework

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

Router

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