coreproc/raven-laravel
最新稳定版本:0.1.0
Composer 安装命令:
composer require coreproc/raven-laravel
包简介
A Laravel 5.1 library that easily integrates raven-php to centralize your logs using Sentry
README 文档
README
A Laravel 5.1 library that easily integrates raven-php to centralize your logs using Sentry.
Install
Go to the root of your Laravel 5.1 project and run the following command:
composer require coreproc/raven-laravel
Then in your config/app.php add the RavenServiceProvider to your providers array
'providers' => array( ... Coreproc\RavenLaravel\Providers\RavenServiceProvider::class, ),
Back on your terminal, run the following command to publish the sentry.php config file:
php artisan vendor:publish
Edit your config/sentry.php file and enable Sentry logging by setting enabled to true and plugging in your DSN from your Sentry project.
'enabled' => true, 'dsn' => 'https://***:***@sentry.yourdomain.com/{project}'
Configuration
You can configure Raven through the config/sentry.php config file. All the available options are already in there together with their default values.
You can find more details about the available options in Raven using this link:
https://github.com/getsentry/raven-php#configuration
Testing
To test if your Sentry application is correctly grabbing your logs, simply launch php artisan tinker and execute a sample log like so:
$ php artisan tinker >>> Log::error("This is a test error. Sentry should get this.");
Security
If you discover any security related issues, please email chris.bautista@coreproc.ph instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 2.88k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-09