techno/框架

1.2.0 2024-01-14 11:50 UTC

This package is auto-updated.

Last update: 2024-09-15 22:48:47 UTC


README

💀 简单至极的 PHP 微型框架

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

路由器

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