sugatasei/bredala-router

PHP object-oriented layer for the HTTP specification

2.0.2 2023-03-09 07:46 UTC

This package is auto-updated.

Last update: 2024-04-09 10:23:43 UTC


README

Fast request router for PHP.

use Bredala\Router\Router;

$router = new Router();
$router->add('GET', '/', function() {
    echo 'home';
});

$router->add('GET', '/hello/([^/]+)', function(string $world) {
    echo "Hello {$world}!";
});