lemmon/router

Lightweight standalone routing library for PHP

dev-master 2016-04-26 18:41 UTC

This package is auto-updated.

Last update: 2024-04-22 19:11:55 UTC


README

Lemmon Router is a lightweight standalone routing library for PHP 7.

  • Flexible regular expression routing
  • Simple and lightweight
  • RESTful routing
  • Fast (100k requests/second)
  • Mod_Rewrite is not required, although supported; extreme portability for rapid development

Getting started

  1. PHP 7.x is required
  2. Install Lemmon Router using Composer (recommended) or manually

Composer Installation

  1. Get Composer
  2. Require Lemmon Router with php composer.phar require lemmon/router
  3. Add the following to your application's main PHP file: require 'vendor/autoload.php';

Examples

<?php

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

$r = new Lemmon\Router\Router;
$r->match('hello-world', function() {
    echo 'Hello World!';
});
$r->dispatch();

Example 1 - Respond to all requests

$r->match(function() {
    # matches everything
});

Example 2 - Match parameters

$r->match('{controller}/{action}', function($r) {
	# $r->controller;
	# $r->action;
});

Example 3 - RESTful routing

$r->match(['GET', 'PUT'], '{controller}(/(?<trail>{action:read|write}/{id:num:1,3=1})!)', ['controller' => '\w+'], function($r) {
    # matches only GET and PUT requests
    # matches either 'controller' or 'controller/action/id' when route conditions are met
    # controller can be any word
    # action is either read or write
    # id must be numeric of length 1 to 3, default is 1
});