2017 © Pedro Peláez
 

symfony-bundle busque-bundle

Symfony bundle for BusQue, a command queue and scheduler for PHP7

image

mgdigital/busque-bundle

Symfony bundle for BusQue, a command queue and scheduler for PHP7

  • Tuesday, August 30, 2016
  • by mgdigital
  • Repository
  • 2 Watchers
  • 4 Stars
  • 152 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 18 Versions
  • 0 % Grown

The README.md

MGDigitalBusQueBundle

Build Status, (*1)

Provides a Symfony bundle for BusQue, a Command Queue and Scheduler for PHP7., (*2)

Installation

Install with composer:, (*3)

composer require mgdigital/busque-bundle

Configuration

The default configuration is as follows:, (*4)

busque:
    implementation:
        queue_name_resolver: busque.queue_name_resolver.classname
        command_serializer: busque.command_serializer.php
        command_id_generator: busque.command_id_generator.object_hash
        queue_adapter: busque.queue_adapter.predis
        predis_client: snc_redis.busque_client
        scheduler_adapter: busque.scheduler_adapter.predis
        clock: busque.system_clock
        commandbus_adapter: busque.commandbus_adapter.tactician
        error_handler: busque.error_handler

Configure the Redis client:, (*5)

snc_redis:
    clients:
        busque:
            type: predis
            alias: busque
            dsn: 'redis://localhost'
            logging: false
            options:
                prefix: 'busque'

Usage

Refer to the BusQue README., (*6)

Tests

Build Status, (*7)

Run the Behat suite:, (*8)

bin/behat

The Versions