nrobin/nano

nano api server

1.4.1 2021-05-03 18:29 UTC

This package is auto-updated.

Last update: 2024-04-22 16:03:53 UTC


README

A tiny API framework written in PHP for quick project prototypes.

Getting Started

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

$api = new nano\Server();

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

$api->run();