molovo/traffic

There is no license information available for the latest version (v0.1.8) of this package.

v0.1.8 2016-02-02 21:29 UTC

This package is auto-updated.

Last update: 2024-03-29 03:22:58 UTC


README

A simple router in ~500 lines of PHP.

use Molovo\Traffic\Router;

Router::get('/hello', function() {
    echo 'Hello World!';
});

Installing

composer require "molovo/traffic"

Usage

// GET /news/2
Router::get('/news/{page:int}', function($page) {
    echo $page; // 2
});

// POST /user/hi@molovo.co
Router::get('/user/{email:email}', function($email) {
    echo $email; // hi@molovo.co
});

// Call execute once routes have been defined to
// execute the callback for the matching route.
Router::execute();