collectivism / router
dev-master
2014-08-27 19:29 UTC
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2025-03-25 04:36:23 UTC
README
Installation
Add this to your composer.json
and run composer install
.
"require": { "collectivism/router" : "dev-master" }
Usage
use \Collectivism\Router; Route::get('/foo/bar', __DIR__ . '/foo/bar.php'); Route::post('/foo/bar', __DIR__ . '/foo/bar.php'); Route::get('/foo/baz', __DIR__ . '/foo/baz.php'); Router::start();