Download the PHP package squidit/slim-attribute-router without Composer
On this page you can find all versions of the php package squidit/slim-attribute-router. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download squidit/slim-attribute-router
More information about squidit/slim-attribute-router
Files in squidit/slim-attribute-router
Package slim-attribute-router
Short Description Slim (v4) Framework - Attribute Router
License MIT
Informations about the package slim-attribute-router
Slim (v4) Framework - Attribute Router
Attribute Action/Controller router
This package allows you to add routes to your slim4 (https://www.slimframework.com) application using attributes in your action classes.
Features
- Route Method support
- Route name support
Attribute signature
#[Route({route}[[, {methods}], {routeName}])]
Parameter | example value | Description |
---|---|---|
{route} | '/hello/{name}' | (string) The route pattern |
{methods} | ['GET', 'POST'] | (array) The allowed HTTP request methods |
{routeName} | 'helloRoute' | (string) The name of the route |
Adding Attribute to an ActionController
If you want to add a route using attributes you can accomplish this by adding a #[Route({route}[[, {methods}], {routeName}])]
route tag to your class method. please see examples:
Example
web address test 1: https://server.name/test1/http/202
Examples without a 'name' parameter
web address test 2: https://server.name/test2/http/202
web address test 3: https://server.name/test3/http/202
- The methods parameter is required when writing the Route attribute
- The path to your ActionController files needs to be specified when instantiating the attribute router
Installation
This package can be installed using Composer
Navigate into your project's root directory and execute the bash command shown below
Enabling the Attribute Router
Our attribute router extends slims default RouteCollector, so we can just instantiate our attribute router and pass it on to our AppFactory