nextras/static-router

Simple static router for Nette Framework

Installs: 132 565

Dependents: 1

Suggesters: 0

Security: 0

Stars: 25

Watchers: 8

Forks: 2

Open Issues: 0

pkg:composer/nextras/static-router

v2.0.1 2020-12-20 14:51 UTC

This package is auto-updated.

Last update: 2025-09-21 01:48:22 UTC


README

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',
]);