radnan / rdn-router
Zend Framework 2 simple router debug utility
Installs: 112
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/radnan/rdn-router
Requires
This package is not auto-updated.
Last update: 2025-10-25 21:43:35 UTC
README
The RdnRouter ZF2 module provides a very simple debug utility that displays information about all your HTTP routes.
Installation
-
Use
composerto require theradnan/rdn-routerpackage:$ composer require radnan/rdn-router:1.* -
Activate the module by including it in your
application.config.phpfile:<?php return array( 'modules' => array( 'RdnRouter', // ... ), );
Usage
Define all your routes using the router.routes configuration option. Then, simply run the following command from your project root:
$ vendor/bin/console router:debug
You can also view a bit more detailed information about a single route by using the full route name as an argument:
$ vendor/bin/console router:debug foo/bar