aboutcoders/notification-bundle
Symfony bundle extending SonataNotificationBundle with process control for starting/stopping notification/message processing, ideal for CI environments. Integrates with AbcProcessControlBundle to manage workers and execution flow during builds and tests.
A symfony bundle that adds process control to the SonataNotificationBundle and thereby allows to start/stop message processing in a continuous integration environment.
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:
How can I help you explore Laravel packages today?