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

Standalone routing implementation for HTTP and console requests

Results 8 zend-router issues
Sort by recently updated
recently updated
newest added

Work in progress Goal of the rewrite is to switch component to the native support of PSR-7. Console routing and http request routing are too different. Common interface proved to...

BC Break
WIP

Based on the idea of this: `` I wanted to create a Url segment, for example: `'/{:param1-somelabelhere-:param2}'` Now, let say using array translation I do like this: ``` ` It...

Hello! I work on translatable route segment with 3 locales ['en' => 'en_US', 'lv' => 'lv_LV', 'ru' => 'ru_RU']. However, I need to encode lv & ru translations with rawurlencode()...

See zendframework/zendframework#7335 Simply enabling regex unicode mode is not enough. Needs more investigation.

One can reproduce this using: ```php $request = new \Zend\Http\Request; $request->setUri('http://www.test.nl/bla/'); $route = \Zend\Router\Http\Wildcard::factory([]); $match = $route->match($request); // Now `$match === null` ``` Was introduced in https://github.com/zendframework/zend-router/pull/47 by @weierophinney

In every project I see people working around the Url ViewHelper not working in console context. If there was a config option like below we could have one standardized way...

When i set the locale parameter to another value than the default value that has been defined in module.config.php, the routing does not take this into account and uses the...

- [x] I was not able to find an [open](https://github.com/zendframework/zend-router/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-router/issues?q=is%3Aclosed) issue matching what I'm seeing. - [x] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/)...