babzich/logentries-bundle

Logentries库的简单包装器

安装: 20

依赖项: 0

建议者: 0

安全: 0

星星: 2

关注者: 4

分支: 1

开放问题: 2

类型:symfony-bundle

0.1 2014-07-25 13:31 UTC

This package is not auto-updated.

Last update: 2024-09-24 02:54:25 UTC


README

logentries/logentries-monolog-handler的简单包装器。

安装

使用composer下载包并运行composer update

{
    "require": {
        "babzich/logentries-bundle": "0.1"
    }
}

启用包

在kernel中启用包

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Bab\LogentriesBundle\BabLogentriesBundle(),
    );
}