zfegg / global-router
This package is abandoned and no longer maintained.
No replacement package was suggested.
Zend Framework V2 or V3 global route config '/[:module[:/controller[:/action]]]'
1.0.1
2016-07-11 06:48 UTC
Requires
- zendframework/zend-eventmanager: ^2.4 || ^3.0
Requires (Dev)
- squizlabs/php_codesniffer: ^2.5
- zendframework/zend-mvc: ^3.0
This package is not auto-updated.
Last update: 2021-04-03 00:43:06 UTC
README
ZendMvc 自带的 Zend\Mvc\ModuleRouteListener
不方便, 每新的 Controller
都需要在 ControllerManager
配置下.
Zfegg\GlobalRouter\GlobalModuleRouteListener
Installation - 安装
composer require zfegg/global-router
Usage - 使用举例
首先, 在 config/modules.config.php
中添加模块加载.
return [
//... Your modules
'Zfegg\\GlobalRouter'
];
默认路由方式: /module/controller/action/param1/value1/param2/value2/...
, 类似ZF1默认路由