yit / notification-bundle
Installs: 383
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 13
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- apy/datagrid-bundle: 2.2.*
- friendsofsymfony/user-bundle: ~1.3
- knplabs/knp-paginator-bundle: ~2.4
README
Installation
Step1: Download NotificationBundle using composer
Add NotificationBundle in your composer.json:
{ "require": { "yit/notification-bundle": "dev-master", } }
Now update composer.
Composer will install the bundle to your project's vendor/yit
directory.
Step 2: Enable the bundle
Enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Yit\NotificationBundle\YitNotificationBundle(), ); }
Step 3: Configure the NotificationBundle
Add the following configuration to your config.yml
file
# app/config/config.yml yit_notification: note_user: pathToYourUserBundle\Entity\User
###Step 4: Import NotificationBundle routing files
# app/config/routing.yml yit_notification: resource: "@YitNotificationBundle/Controller/" type: annotation prefix: /
Step 5: Update your database schema
Now that the bundle is configured, the last thing you need to do is update your database schema.