You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 be limiting and of little practical value: routes were not shared between the two and consumers had to accept one and outright reject another in most cases.
Next implementation of zend-mvc will be PSR-7 based as well and zend-mvc-console will be dropped.
For that reason, support for Zend\Http\RequestInterface will be dropped as too incompatible with PSR-7 and support for the non-http routing with Zend\Stdlib\RequestInterface will not be retained as impractical.
Effectively that will make zend-router a PSR-7 only router.
Also, this PR bumps minimum php to 7.1, introduces strict types, scalar and return typehinting
Note: this PR is a subject for rebases and commit squashes. Ask before using as a basis for your work.
Small note:
I wanted to keep RouteMatch as a separate thing from RouteResult to keep it more or less backward compatible.
It is used extensively in zend-mvc, but consumers should really be using PSR-7 request attributes for matched parameters. While it will cause additional migration challenges for zend-mvc users, it will be more in line with zend-expressive and the rest of the industry.
Besides, attempts to keep RouteMatch and request attributes in sync are error prone and pretty much guaranteed to produce subtle bugs.
Routes doing partial match conditionally and depending on the concrete implementation are violating RouteInterface contract.
To make things more straightforward, RouteInterface is now not allowed to return partial match. PartialRouteInterface extending RouteInterface was introduced instead. Chain, Hostname, Literal, Method, Regex, Scheme and Segment are now partial routes. Chain was changed to accept partial routes only, Part was changed to accept only partial route for its base route.
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 be limiting and of little practical value: routes were not shared between the two and consumers had to accept one and outright reject another in most cases.
Next implementation of zend-mvc will be PSR-7 based as well and zend-mvc-console will be dropped.
For that reason, support for
Zend\Http\RequestInterface
will be dropped as too incompatible with PSR-7 and support for the non-http routing withZend\Stdlib\RequestInterface
will not be retained as impractical.Effectively that will make zend-router a PSR-7 only router.
Also, this PR bumps minimum php to 7.1, introduces strict types, scalar and return typehinting
Note: this PR is a subject for rebases and commit squashes. Ask before using as a basis for your work.
Originally posted by @Xerkus at zendframework/zend-router#40
The text was updated successfully, but these errors were encountered: