Download the PHP package php-ddd/command without Composer
On this page you can find all versions of the php package php-ddd/command. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download php-ddd/command
More information about php-ddd/command
Files in php-ddd/command
Download php-ddd/command
More information about php-ddd/command
Files in php-ddd/command
Vendor php-ddd
Package command
Short Description The command part of the Command Query Responsibility Segregation
License MIT
Package command
Short Description The command part of the Command Query Responsibility Segregation
License MIT
Please rate this library. Is it a good library?
Informations about the package command
Command

This library provides some useful tools in order to create a simple command system.
How it works
Conventions
We want to follow the Single Responsibility principle. Hence:
- A
CommandHandler
can only handle oneCommandInterface
- A
CommandBus
will only dispatch someCommandInterface
(and nothing more) - A
CommandHandlerLocator
is responsible of registering associations betweenCommand
andCommandHandler
It allows us to force some other conventions like the name of the CommandHandler
class that needs to match the
name of the Command
it handle. E.g: AddItemToChartCommand
will be handled by a AddItemToChartCommandHandler
object.
All versions of command with dependencies
PHP Build Version
Package Version
The package php-ddd/command contains the following files
Loading the files please wait ....