Skip to content

πŸ’€ Dead simple PHP microframework

License

Notifications You must be signed in to change notification settings

bvlinsky/techno

Repository files navigation

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