All Projects → nextras → static-router

nextras / static-router

Licence: other
Simple static router for Nette Framework

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to static-router

mail-panel
Mail panel for Nette framework
Stars: ✭ 69 (+187.5%)
Mutual labels:  nextras, nette-component
forms
[DEPRECATED] Form controls for Nette Framework
Stars: ✭ 50 (+108.33%)
Mutual labels:  nextras, nette-component
route-descriptor
Single source of truth for routing
Stars: ✭ 17 (-29.17%)
Mutual labels:  routing
urltree
Named URL data structure with support for URL building.
Stars: ✭ 36 (+50%)
Mutual labels:  routing
HerePy
A library that provides a Python interface to the HERE APIs.
Stars: ✭ 73 (+204.17%)
Mutual labels:  routing
neteng-roadmap
Network Engineering at Scale Roadmap/Landscape
Stars: ✭ 53 (+120.83%)
Mutual labels:  routing
routing-py
🌎 Python library to access all public routing, isochrones and matrix APIs in a consistent manner.
Stars: ✭ 106 (+341.67%)
Mutual labels:  routing
angular-ssr
Angular 14 Example SSR (Server side rendering)
Stars: ✭ 92 (+283.33%)
Mutual labels:  routing
r2
A minimalist HTTP request routing helper for Go.
Stars: ✭ 32 (+33.33%)
Mutual labels:  routing
optimization
Routing optimization module module for Itinero.
Stars: ✭ 47 (+95.83%)
Mutual labels:  routing
STCRouter
基于标准URL的iOS路由系统,可实现业务模块组件化,控制器之间零耦合,可实现黑白名单控制,可进行native降级到hybrid。
Stars: ✭ 19 (-20.83%)
Mutual labels:  routing
JWT-user-auth-API-bolilerplate
Boilerplate for backend API user authentication with JWT
Stars: ✭ 13 (-45.83%)
Mutual labels:  routing
gweatherrouting
Sailing weather routing made easy
Stars: ✭ 15 (-37.5%)
Mutual labels:  routing
nuxt-i18n-routing
Localized routing with Nuxt.js
Stars: ✭ 32 (+33.33%)
Mutual labels:  routing
cac-tripplanner
Clean Air Council Circuit Trip Planner and Travelshed
Stars: ✭ 12 (-50%)
Mutual labels:  routing
router
Bidirectional Ring router. REST oriented. Rails inspired.
Stars: ✭ 78 (+225%)
Mutual labels:  routing
arcus.messaging
Messaging with Microsoft Azure in a breeze.
Stars: ✭ 20 (-16.67%)
Mutual labels:  routing
flow-router
🚦 Carefully extended flow-router for Meteor
Stars: ✭ 191 (+695.83%)
Mutual labels:  routing
framework
Cygnite PHP Framework- A Modern Toolkit For Web Developers
Stars: ✭ 43 (+79.17%)
Mutual labels:  routing
CRRouter
A simple and powerful router
Stars: ✭ 54 (+125%)
Mutual labels:  routing

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',
]);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].