itkg / delay-event-bundle
事件延迟包
1.2.5
2017-08-17 13:01 UTC
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
关于
提供延迟事件并异步处理的方法
安装
通过Composer安装
如果你使用composer,将ItkgDelayEventBundle包作为依赖项添加到你的应用的composer.json文件中
"require": { "itkg/delay-event-bundle": "dev-master" },
- 将ItkgDelayEventBundle添加到你的应用内核中。
// app/AppKernel.php <?php // ... public function registerBundles() { $bundles = array( // ... new Itkg\DelayEventBundle\ItkgDelayEventBundle(), ); }
# 使用
待办