static-router icon indicating copy to clipboard operation
static-router copied to clipboard

Simple static router for Nette Framework

Nextras StaticRouter

Build Status Downloads this Month Stable Version

Installation

Add to your composer.json:

"require": {
	"nextras/static-router": "~2.0"
}

Example

use Nextras\Routing\StaticRouter;

$router = new StaticRouter(['Homepage:default' => 'index.php'], StaticRouter::ONE_WAY);

$router = new StaticRouter([
	'Homepage:default' => '',
	'Auth:signIn' => 'sign-in',
	'Auth:signOut' => 'sign-out',
	'Auth:signUp' => 'sign-up',
]);