tigralt / eznotificationbundle
A simple and fast implemented bundle for user notification management
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:symfony-bundle
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: 2025-04-26 23:26:09 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; }