white43 / yii2-fleep
dev-master
2019-04-06 07:03 UTC
Requires
- php: ^5.5 || ^7.0
- ext-curl: *
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2026-03-06 22:03:45 UTC
README
Installation
composer require white43/yii2-fleep
Config
- Open config/web.php of your Yii2 app
- Make necessary changes
$config = [
'components' => [
'log' => [
'targets' => [
'fleep' => [
'class' => white43\Fleep\FleepTarget::class,
'levels' => ['error', 'warning'],
'hook' => 'INSERT_YOUR_HOOK_ID_HERE',
],
],
],
],
];
- Profit!