2017 © Pedro Peláez
 

library depot

A simple PHP command bus

image

vherus/depot

A simple PHP command bus

  • Tuesday, February 7, 2017
  • by Vherus
  • Repository
  • 1 Watchers
  • 1 Stars
  • 35 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 35 % Grown

The README.md

Depot - PHP Command Bus

Build Status Scrutinizer Code Quality, (*1)

Install

composer require vherus/depot, (*2)

Usage

Out of the box, there are two ways to use Depot. You can either explicitly provide a map of commands => handlers, or (my favourite) you can use the NativeNamespaceResolver to automatically resolve your handlers., (*3)

First, we'll look at the automatic resolver., (*4)

$bus = new Depot\Bus\NativeCommandBus(new Depot\Resolution\NativeNamespaceResolver);
$bus->dispatch(new My\Command);

The NativeNamespaceResolver will look in the commands current directory and a subdirectory of Handler and Handlers to try and resolve the correct handler for the given command. If it's unable to resolve it, it'll throw a Depot\Exception\UnresolvableHandlerException., (*5)

So all you need to do is create your command:, (*6)

namespace My;

class Command implements Depot\Command { }

And a handler with the same name, suffixed with 'Handler', in either the current namespace or a sub-namespace named 'Handler' or 'Handlers'., (*7)

namespace My\Handler;

class CommandHandler
{
    public function handle(My\Command $command) { }
}

Alternatively, you can use the map resolver to be more explicit about your handler resolutions., (*8)

$bus = new NativeCommandBus(new NativeMapResolver([
    My\Command::class => My\Command\Handler\CommandHandler::class
]));
$bus->dispatch(new My\Command);

Decoration

Depot does not come with any "decorators" out of the box; at least, not yet. However, since Depot is rather simple, it's very easy to decorate. You could, for example, create your own implementation of the Depot CommandBus interface and pass the provided NativeCommandBus into it., (*9)

For example:, (*10)

class QueuedCommand extends Depot\Command {}

class QueuedCommandBus implements Depot\CommandBus
{
    private $innerBus;
    private $queue;

    public function __construct(Depot\CommandBus $innerBus, SomeQueueLibrary $queue)
    {
        $this->innerBus = $innerBus;
        $this->queue = $queue;
    }

    public function dispatch(Command $command)
    {
        if ($command instanceof QueuedCommand) {
            $this->queue->queue($command);
            return;
        }

        $this->innerBus->dispatch($command);
    }
}

Framework Specifics

Laravel

I'm not in the habit of creating "ServiceProviders" and "Laravel Bridges" - I feel it's important that you be able to decide exactly how to use any given package. However, I have included an adapter for the Laravel IoC container., (*11)

To set up Depot with Laravel, you could simply add something like the below to your AppServiceProvider:, (*12)

$this->app->bind(Depot\Container::class, Depot\Container\Laravel\IlluminateContainer::class);
$this->app->bind(Depot\HandlerResolver::class, Depot\Resolution\NativeNamespaceResolver::class);
$this->app->bind(Depot\CommandBus::class, Depot\Bus\NativeCommandBus::class);

This will allow you to go ahead an inject Depot\CommandBus as a dependency into your classes as normal., (*13)

Note: I have no intention of providing a "facade"., (*14)

The Versions

07/02 2017

dev-master

9999999-dev

A simple PHP command bus

  Sources   Download

MIT

The Requires

  • php >=7.0

 

The Development Requires

by Nathan King

18/01 2017

v1.0

1.0.0.0

A set of Entity assistance components

  Sources   Download

MIT

The Requires

  • php >=7.0

 

The Development Requires

by Nathan King