summaryrefslogtreecommitdiff
path: root/vendor/monolog/monolog/README.mdown
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/monolog/monolog/README.mdown')
-rw-r--r--vendor/monolog/monolog/README.mdown25
1 files changed, 22 insertions, 3 deletions
diff --git a/vendor/monolog/monolog/README.mdown b/vendor/monolog/monolog/README.mdown
index add476a8..af745c8a 100644
--- a/vendor/monolog/monolog/README.mdown
+++ b/vendor/monolog/monolog/README.mdown
@@ -17,11 +17,18 @@ make sure you can always use another compatible logger at a later time.
As of 1.11.0 Monolog public APIs will also accept PSR-3 log levels.
Internally Monolog still uses its own level scheme since it predates PSR-3.
+Installation
+------------
+
+Install the latest version with
+
+```bash
+$ composer require monolog/monolog
+```
+
Usage
-----
-Install the latest version with `composer require monolog/monolog`
-
```php
<?php
@@ -154,6 +161,8 @@ Handlers
inline `console` messages within Chrome.
- _BrowserConsoleHandler_: Handler to send logs to browser's Javascript `console` with
no browser extension required. Most browsers supporting `console` API are supported.
+- _PHPConsoleHandler_: Handler for [PHP Console](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef), providing
+ inline `console` and notification popup messages within Chrome.
### Log to databases
@@ -238,6 +247,13 @@ Utilities
- _ChannelLevelActivationStrategy_: Activates a FingersCrossedHandler when a certain
log level is reached, depending on which channel received the log record.
+Third Party Packages
+--------------------
+
+Third party handlers, formatters and processors are
+[listed in the wiki](https://github.com/Seldaek/monolog/wiki/Third-Party-Packages). You
+can also add your own there if you publish one.
+
About
=====
@@ -258,12 +274,15 @@ Frameworks Integration
can be used very easily with Monolog since it implements the interface.
- [Symfony2](http://symfony.com) comes out of the box with Monolog.
- [Silex](http://silex.sensiolabs.org/) comes out of the box with Monolog.
-- [Laravel 4](http://laravel.com/) comes out of the box with Monolog.
+- [Laravel 4 & 5](http://laravel.com/) come out of the box with Monolog.
+- [Lumen](http://lumen.laravel.com/) comes out of the box with Monolog.
- [PPI](http://www.ppi.io/) comes out of the box with Monolog.
- [CakePHP](http://cakephp.org/) is usable with Monolog via the [cakephp-monolog](https://github.com/jadb/cakephp-monolog) plugin.
- [Slim](http://www.slimframework.com/) is usable with Monolog via the [Slim-Monolog](https://github.com/Flynsarmy/Slim-Monolog) log writer.
- [XOOPS 2.6](http://xoops.org/) comes out of the box with Monolog.
- [Aura.Web_Project](https://github.com/auraphp/Aura.Web_Project) comes out of the box with Monolog.
+- [Nette Framework](http://nette.org/en/) can be used with Monolog via [Kdyby/Monolog](https://github.com/Kdyby/Monolog) extension.
+- [Proton Micro Framework](https://github.com/alexbilbie/Proton) comes out of the box with Monolog.
Author
------