depth/techno

此软件包已被废弃且不再维护。作者建议使用 techno/framework 软件包。

1.2.0 2024-01-14 11:50 UTC

This package is auto-updated.

Last update: 2024-03-15 13:04:06 UTC


README

💀 简单的 PHP 微型框架

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

路由器

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