itkg / delay-event-bundle
Event delayed bundle
Installs: 6 076
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 3
Open Issues: 5
Requires
- php: >=5.4,<7.0
- symfony/symfony: ~2
Requires (Dev)
- phake/phake: ^2.1.1
- phpunit/phpunit: 4.*
Suggests
- doctrine/mongodb-odm-bundle: Allow you to store event into mongoDB documents
README
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