vectorface/snappy-router

A quick and snappy routing framework.

v0.4.0 2024-01-22 01:09 UTC

This package is auto-updated.

Last update: 2024-03-22 01:30:04 UTC


README

Build Status Code Coverage Scrutinizer Code Quality Latest Stable Version License

SnappyRouter is a lightweight router written in PHP. The router offers features standard in most other routers such as:

  • Controller/Action based routes
  • Rest-like routes with API versioning
  • Pattern matching routes (based off nikic/FastRoute)
  • Direct file invocation (wrap paths to specific files through the router)

SnappyRouter makes it easy to write your own routing handler for any imaginable custom routing scheme.

SnappyRouter is designed to work with your existing "seasoned" codebase to provide a common entry point for your code base. SnappyRouter is ideal for existing projects that lack the features of a modern framework. By providing a number of flexible different routing handlers, any PHP code base can be retrofitted behind the router (usually) without requiring changes to your existing code. For more information on why you want to use a router, see the documentation.

For more information, view the detailed documentation.