babzich / logentries-bundle
A simple wrapper for the Logentries library
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 1
Open Issues: 2
Type:symfony-bundle
Requires
- logentries/logentries-monolog-handler: dev-master
This package is not auto-updated.
Last update: 2024-12-17 04:01:28 UTC
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(), ); }