nrobin/nano

nano api server

Maintainers

Details

github.com/dnrobin/nano

Source

Issues

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 1

Open Issues: 0

pkg:composer/nrobin/nano

1.4.1 2021-05-03 18:29 UTC

This package is auto-updated.

Last update: 2025-12-22 19:41:44 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();