babzich/logentries-bundle
A simple wrapper for the Logentries library
Installs: 14
Dependents: 0
Suggesters: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 3
Type:symfony-bundle
Requires
- logentries/logentries-monolog-handler: dev-master
README
A simple wrapper for logentries/logentries-monolog-handler.
Installation
Download the bundle using composer and run composer update
{ "require": { "babzich/logentries-bundle": "0.1" } }
Enable the bundle
Enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Bab\LogentriesBundle\BabLogentriesBundle(), ); }