aboutcoders/notification-bundle
最新稳定版本:0.2.1
Composer 安装命令:
composer require aboutcoders/notification-bundle
包简介
A symfony bundle that adds process control to the SonataNotificationBundle.
README 文档
README
A symfony bundle that adds process control to the SonataNotificationBundle and thereby allows to start/stop message processing in a continuous integration environment.
Installation
Follow the installation instructions of the required third party bundles:
Add the AbcNotificationBundle to your composer.json file
php composer.phar require aboutcoders/notification-bundle
Include the bundle in the AppKernel.php class
public function registerBundles() { $bundles = array( // ... new Abc\Bundle\NotificationBundle\AbcNotificationBundle(), ); return $bundles; }
Following the installation instructions of the SonataNotificationBundle you will create or generate a bundle within your application that extends from the SonataNotificationBundle. Since this bundle also extends from the SonataNotificationBundle you have to extend your created/generated bundle from this bundle instead of the SonataNotificationBundle.
class MySonataNotificationBundle extends Bundle { /** * {@inheritdoc} */ public function getParent() { return 'AbcNotificationBundle'; } }
ToDo:
- Provide a pull request for the SonataNotificationBundle that allows to define custom message managers/iterators and thereby make this bundle obsolete
统计信息
- 总下载量: 2.09k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-05-15