itkg/delay-event-bundle

Event delayed bundle

1.2.5 2017-08-17 13:01 UTC

README

Build Status Scrutinizer Code Quality Code Coverage SensioLabsInsight

About

Provide a way to delay events & process them asynchronously

Installation

Installation by Composer

If you use composer, add ItkgDelayEventBundle bundle as a dependency to the composer.json of your application

    "require": {
        "itkg/delay-event-bundle": "dev-master"
    },
  • Add ItkgDelayEventBundle to your application kernel.
// app/AppKernel.php
<?php
    // ...
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Itkg\DelayEventBundle\ItkgDelayEventBundle(),
        );
    }

# Usage

TODO