Skip to content

v1.3.0

Compare
Choose a tag to compare
@izniburak izniburak released this 10 Jan 23:40
· 60 commits to master since this release
  • 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();