nrobin/nano

nano API 服务器

1.4.1 2021-05-03 18:29 UTC

This package is auto-updated.

Last update: 2024-09-22 16:50:46 UTC


README

一个用PHP编写的微型API框架,用于快速项目原型。

入门指南

require_once __DIR__ . '/vendor/autoload.php';

$api = new nano\Server();

# serve text from root
$api->get('/', function () {
    echo "Hello, World!";
});

$api->run();