Download the PHP package alpha-zeta/simple-route without Composer
On this page you can find all versions of the php package alpha-zeta/simple-route. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download alpha-zeta/simple-route
More information about alpha-zeta/simple-route
Files in alpha-zeta/simple-route
Package simple-route
Short Description Simple, fast, modern and flexible routing library
License MIT
Informations about the package simple-route
Simple route for PHP
simple, fast, modern, flexible PHP routing. PSR-7, PSR-15 compatible.
Installation
This package requires PHP version 8.2 or later.
Usage
anywhere, ../config/routes.php, for example:
anywhere:
When using a dependency container and pipeline
In the dependency container:
Add middleware to end of pipeline:
Features
-
Very simple record for route:
- Each route is named
- The route can be applied to a function, anonymous function, method, or the entire controller
- {action} is reserved token name, means the name of a controller method
- Default controller method name is __invoke
- Default http request methods is ['HEAD', 'GET']
- The delimeters me be any valid character
-
Fine-tuning of the route is done through attributes:
- tokens - redefines default token:
'\w*'
- methods - redefines request methods
- host - filter by $request->getHost() (default - no filter)
- ajax - filter by 'x_requested_with' header (default - no filter)
- filter - any named function or method, takes the route as the first parameter, and the request as the second
- tokens - redefines default token:
-
Request handler (controller) record may be:
Before invoke the controller is wrapped in class implements RequestHandleInterface. Therefore, we recommend using a controller that implements the RequestHandlerInterface right away
- Router does not create instances of the Route class until match pattern and uri. This saves memory and time.
Happy use for You!
Try the demo for get more examples
All versions of simple-route with dependencies
psr/http-message Version ^1.0 || ^2.0
psr/http-server-middleware Version ^1.0
psr/http-server-handler Version ^1.0
psr/container Version ^1.1 || ^2.0