NotificationBundle
## Installation
Step1: Download NotificationBundle using composer
Add NotificationBundle in your composer.json:, (*1)
{
"require": {
"yit/notification-bundle": "dev-master",
}
}
Now update composer., (*2)
Composer will install the bundle to your project's vendor/yit directory., (*3)
Step 2: Enable the bundle
Enable the bundle in the kernel:, (*4)
``` php
<?php
// app/AppKernel.php, (*5)
public function registerBundles()
{
$bundles = array(
// ...
new Yit\NotificationBundle\YitNotificationBundle(),
);
}, (*6)
### Step 3: Configure the NotificationBundle
Add the following configuration to your `config.yml` file
``` yaml
# app/config/config.yml
yit_notification:
note_user: pathToYourUserBundle\Entity\User
Step 4: Import NotificationBundle routing files
``` yaml, (*7)
app/config/routing.yml
yit_notification:
resource: "@YitNotificationBundle/Controller/"
type: annotation
prefix: /
```, (*8)
Step 5: Update your database schema
Now that the bundle is configured, the last thing you need to do is update your
database schema., (*9)