Skip to content

Releases: izniburak/php-router

v1.3.0

10 Jan 23:40

Choose a tag to compare

  • Added caching routes feature. So, Routes can now be cached! For example:
// created instance $route

$route->get(...)
$route->post(...)
$route->put(...)

$route->cache();
$route->run();

v1.2.0

20 Aug 11:14

Choose a tag to compare

  • Added middleware support to routes created with controller methods.
  • Added handle() method for Middleware class. Middlewares will run by handle() method anymore. No need to specify the method. when define middleware.
  • Some code optimization.