Releases: skipperbent/simple-php-router
Releases · skipperbent/simple-php-router
Version 1.3.8
- Fixed get params warnings.
Version 1.3.7
- Removed references to Pecee framework.
- Fixed variables not being initialised before usage.
- Cleaned up duplicate checks.
- Other small optimisations and bugfixes.
Version 1.3.6
- Fixed error with
RouterGroup
class causing group not to be rendered if no domain is available.
Version 1.3.5
- Optimised code: fixed missing return statement.
Version 1.3.4
- Added support for domains array on group.
- Group will not render if one or more domain does not match.
Version 1.3.3
- Added support for subdomain routing on groups.
- Also improved regex matching when using custom regular expressions.
- Changed many of the foreach statements - for maximum speed optimisations.
- Other minor optimisations and bugfixes.
Version 1.3.2
- Removed
baseCfsrVerifier
from constructor inRouteBase
class, to make it completely optional (to increase speed on project which doesn't need it).
Version 1.3.1
- Optimised
cache
method inResponse
class.
Version 1.3.0.7
- Added support for custom ExceptionHandlers on group level.
- Routes now contain parent group, if any.
- Fixed wrong usage of required parameter.
- Updated documentation.
Version 1.3.0.6
- If parameter is empty set the value to
null
inRouterRoute
. RouterRoute
now throwsRouterException
is required parameter is not filled.