Download the PHP package ellipse/handlers-adr without Composer

On this page you can find all versions of the php package ellipse/handlers-adr. 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 handlers-adr

Request handler ADR

This package provides a Psr-15 request handler implementing the Action-Domain-Responder pattern.

Require php >= 7.0

Installation composer require ellipse/handlers-adr

Run tests ./vendor/bin/kahlan

Request handler using ADR pattern

The Action-Domain-Responder (ADR) pattern is used to separate domain and presentation logic of an application. It can be summed up as having Action objects gluing together pairs of Domain and Responder objects in order to produce a response from an incoming request. An Action can therefore be considered as a Psr-15 request handler and the goal of this package is to provide an ADR implementation usable with any Psr-15 dispatching system.

The Ellipse\Handlers\ActionRequestHandler represents a generic Action implementing Psr\Http\Server\RequestHandlerInterface. Its first constructor parameter is a Domain object implementing Ellipse\ADR\DomainInterface and the second one is a Responder object implementing Ellipse\Handler\ResponderInterface. Here is what's going on when the ->handle() method of an ActionRequestHandler instance is called with a Psr-7 request:

By default the input array is obtained by merging the request attributes, query parameters, parsed body parameters and uploaded files. They are merged in this order, meaning request attributes are overridden by query parameters having the same keys, which in turn are overridden by parsed body parameters, and finally by uploaded files. An Action specific request parsing logic can be specified by passing a callable as ActionRequestHandler third constructor parameter. This request parser callable is executed with the request as parameter and must return an array. An Ellipse\Handlers\Exceptions\InputTypeException is thrown when anything else than an array is returned.

DomainInterface defines a ->payload() method taking an input array as parameter and returning an implementation of Ellipse\ADR\PayloadInterface.

PayloadInterface defines two methods: ->status() returning the payload status as a string and ->data() returning the payload data as an array. The Ellipse\ADR\Payload class can be used as a default implementation of PayloadInterface. It takes the status string and the data array as constructor parameters.

Finally, ResponseInterface defines a ->response() method taking a request and an implementation of PayloadInterface as parameter and returning a response.

Usage with a Psr-11 container

In real world applications Domain and Responder instances are usually retrieved from a container.

This packages provides implementations of DomainInterface and ResponderInterface proxying a Psr-11 container entry.

Ellipse\Handlers\ContainerDomain class takes a container and the container id of a Domain object as constructor parameters. When its ->payload() method is called, the Domain is retrieved from the container and the payload produced by its ->payload() method is returned. An Ellipse\Handlers\Exceptions\ContainedDomainTypeException is thrown when the container entry is not an implementation of DomainInterface.

In the same way Ellipse\Handlers\ContainerResponder class takes a container and the container id of a Responder object as constructor parameters. The container entry ->response() method is proxied and an Ellipse\Handlers\Exceptions\ContainedResponderTypeException is thrown when it is not an implementation of ResponderInterface.

Finally, request parsing callables can also be retrieved from the container using the Ellipse\Handlers\ContainerRequestParser class with a container and the container id of a callable as constructor parameters. An Ellipse\Handlers\Exceptions\ContainedRequestParserTypeException is thrown when the container entry is not a callable.

Of course Domain and Responder classes can be auto wired using Ellipse\Container\ReflectionContainer class from the ellipse/container-reflection package.


All versions of handlers-adr with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
psr/container Version ^1.0
psr/http-message Version ^1.0
psr/http-server-handler Version ^1.0
psr/http-server-middleware Version ^1.0
ellipse/adr Version ^1.0
ellipse/type-errors 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 ellipse/handlers-adr contains the following files

Loading the files please wait ....