Download the PHP package tobento/service-routing without Composer

On this page you can find all versions of the php package tobento/service-routing. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package service-routing

Routing Service

The Routing Service provides a flexible way to build routes for any PHP application.

Table of Contents

Getting started

Add the latest version of the routing service running this command.

Requirements

Highlights

Documentation

Router

Basic Routing

Routing methods

Uri definitions

Handler definitions

The default RouteHandler supports autowiring and the following handler definitions.

Parameters

Name a route:

The main purpose for named routes is the generation of URLs. But they might be useful for any other cases too.

:warning: Named routes should be unique, otherwise the route got overwritten.

Adding middleware: see also With PSR-15 Middleware

Where constraint parameter: see also Constrainer

Query constraint parameter:

Domain: see also Domain Routing

Signed: see also Signed Routing

Matches:

BaseUrl:

Adding custom parameters:

Url Generation

Generating url from named routes:

More Routes methods

Custom Routes:

Get All Routes:

Get Named Route:

Get Matched Route:

Group Routing

You might use groups to share parameters across routes:

If the group uri definition has parameters, they are available on the routes:

Resource Routing

You may use resource routing for convenience:

This will produce the following routes:

Method Uri Action / Controller method Route name
GET products index products.index
GET products/create create products.create
POST products store products.store
GET products/{id} show products.show
GET products/{id}/edit edit products.edit
PUT/PATCH products/{id} update products.update
DELETE products/{id} delete products.delete

You might route only specific actions:

You might change the default where constraint:

Adding new or overwriting existing actions:

Middleware:

Adding additional route parameters for an action:

Adding additional route parameters for all actions:

With localization and translation:

Domain Routing

Domain Routes

multiple domains

You may add a route for multiple domains:

domain specific parameters

You may set domain specific parameters for each domain:

Domain Url Generation

Managing Domains

You may specify the domains in order to managing them at one place.

Signed Routing

Signed Routes

Add a signed route:

Add a signed route with validating on handler for custom response:

Signed Url Generation

Localization and Translation Routing

Localize Routes

Support only specific locales:

Omit locale in request uri:

Define current locale:

Rename locale uri definition:

Translatable Routes

Without locale uri definition

Support only specific locales:

Define locale fallbacks:

With locale uri definition:

Default parameters are always prioritized:

Matched Route Event

The default MatchedRouteHandler supports autowiring.

Constrainer

Add rule constraint to route:

Available Rules:

Rule Regex Description
:alpha [a-zA-Z]+
:alpha:2 [a-zA-Z]{2} n{x} Matches any string that contains a sequence of X n's
:alpha:2:5 [a-zA-Z]{2,5} n{x,y} Matches any string that contains a sequence of X to Y n's
:alpha:2: [a-zA-Z]{2,} n{x,} Matches any string that contains a sequence of at least X n's
:num [0-9]+
:num:2 [0-9]{2} n{x} Matches any string that contains a sequence of X n's
:num:2:5 [0-9]{2,5} n{x,y} Matches any string that contains a sequence of X to Y n's
:num:2: [0-9]{2,} n{x,} Matches any string that contains a sequence of at least X n's
:alphaNum [a-zA-Z0-9]+
:alphaNum:2 [a-zA-Z0-9]{2} n{x} Matches any string that contains a sequence of X n's
:alphaNum:2:5 [a-zA-Z0-9]{2,5} n{x,y} Matches any string that contains a sequence of X to Y n's
:alphaNum:2: [a-zA-Z0-9]{2,} n{x,} Matches any string that contains a sequence of at least X n's
:id:1:5 :id:minNumber:maxLength
:id Uses the default parameters from the rule :id:1:21
:in:foo:bar:baz If the value is is one of foo, bar, baz

Custom Rules:

Dispatching Strategies

There are different ways of handling the matched route, depending on your needs.

Simple

No middleware support though.

With PSR-7 Response

No middleware support though.

With PSR-15 Middleware

You will need to define your MiddlewareDispatcher implementation on the container. You might customize this behaviour by your own RouteHandler though.

Credits


All versions of service-routing with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
psr/http-message Version ^1.0
psr/http-server-handler Version ^1.0
psr/http-server-middleware Version ^1.0
tobento/service-collection Version ^1.0
tobento/service-support Version ^1.0
tobento/service-uri Version ^1.0
tobento/service-dater Version ^1.0
tobento/service-autowire Version ^1.0
tobento/service-middleware Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tobento/service-routing contains the following files

Loading the files please wait ....