tigralt/eznotificationbundle

A simple and fast implemented bundle for user notification management

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2017-05-21 12:40 UTC

This package is not auto-updated.

Last update: 2024-06-08 18:38:26 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;
}