tigralt / eznotificationbundle
A simple and fast implemented bundle for user notification management
Package info
github.com/Tigralt/EZNotification
Type:symfony-bundle
pkg:composer/tigralt/eznotificationbundle
dev-master
2017-05-21 12:40 UTC
Requires
- php: >=5.3.2
- symfony/console: >=2.6
- symfony/dependency-injection: >=2.6
- symfony/framework-bundle: >=2.6
- symfony/security-bundle: >=2.6
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is not auto-updated.
Last update: 2026-03-01 03:47:58 UTC
README
A light bundle for implementing user notification in a Symfony application.
Install
In the console use the command
composer require tigralt/eznotificationbundle
Or in your composer.json add the requirement
"require": { "tigralt/eznotificationbundle": "dev-master" }
Then register the bundle in your AppKernel
public function registerBundles() { ... $bundles = array( ... new Tigralt\EZNotificationBundle\EZNotificationBundle(), ); ... return $bundles; }