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

0.1 2014-07-25 13:31 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:48:30 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(),
    );
}