Skip to content

Tags: pmjones/FastRoute

Tags

v1.3.0

Toggle v1.3.0's commit message
Make shape fields explicitly nullable

This adds compatibility for HHVM >= 3.23 and removes compatibility
for HHVM < 3.23.

v1.2.0

Toggle v1.2.0's commit message
Make RouteCollector members protected

v1.1.0

Toggle v1.1.0's commit message
Have git ignore composer files

Not sure why there isn't one already. Just more convenient, I think.

v1.0.1

Toggle v1.0.1's commit message
Use type-strict comparison

v1.0.0

Toggle v1.0.0's commit message
Add example for multiple optional parts

v0.8.0

Toggle v0.8.0's commit message
Add fallback routes matching *any* method

These are strictly fallback handlers and only match after all other
routes have been tried. The target use case are path-specific 404
pages or similar.

v0.7.0

Toggle v0.7.0's commit message
Merge pull request nikic#83 from fredemmott/fastroute-hhi

HHI: Change the options arrays for dispatchers to shapes

v0.6.0

Toggle v0.6.0's commit message
Simplify implementation for optionals

Drop the manual parsing code, use regex.

v0.5.0

Toggle v0.5.0's commit message
Fix issue nikic#50

If the static route doesn't exist for the given method, try matching
against dynamic ones as well. Allowed methods are now collected from
both static and dynamic routes.

This changes the route data format, so cache is no longer valid --
maybe include a version identifier in the cache file?

v0.4.0

Toggle v0.4.0's commit message
Add PHP 7 to Travis