Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 236 Bytes

README.md

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