prooph/prooph-service-bus-module

This package is abandoned and no longer maintained. The author suggests using the https://github.com/prooph/service-bus package instead.

Zend Framework 2 Module for ProophServiceBus

v2.0 2015-01-13 20:16 UTC

This package is auto-updated.

Last update: 2022-02-01 12:36:32 UTC


README

[deprecated] Zend Framework 2 Module for ProophServiceBus. This module only support ProophServiceBus <= 2.x. If you want to use PSB v3+ with ZF2 then checkout proophessor

Build Status

Installation

You can install ProophServiceBusModule via composer by adding "prooph/prooph-service-bus-module": "~1.0" as requirement to your composer.json.

Post installation

Enabling it in your application.config.phpfile.

<?php
return array(
    'modules' => array(
        // ...
        'ProophServiceBusModule',
    ),
    // ...
);

Configuration

Copy the prooph.servicebus.global.php to your config/autoload directory and adjust the config to meet your needs.

Retrieve A ProophServiceBus

The command bus can be retrieved from ServiceManager by using the alias prooph.psb.command_bus

$commandBus = $services->get('prooph.psb.command_bus');

The event bus can be retrieved from ServiceManager by using the alias prooph.psb.event_bus

$eventBus = $services->get('prooph.psb.event_bus');