laravel-error-report maintained by eslym
Last update
2019/07/26 07:12
License
Require
- php >=7.1
- ext-json *
- illuminate/support >=5.6 <6.0
- illuminate/routing >=5.6 <6.0
- illuminate/http >=5.6 <6.0
- illuminate/console >=5.6 <6.0
- illuminate/database >=5.6 <6.0
- illuminate/config >=5.6 <6.0
- filp/whoops ^2.2
- ramsey/uuid ^3.7
Last update
2019/07/26 07:12
License
Require
- php >=7.1
- ext-json *
- illuminate/support >=5.6 <6.0
- illuminate/routing >=5.6 <6.0
- illuminate/http >=5.6 <6.0
- illuminate/console >=5.6 <6.0
- illuminate/database >=5.6 <6.0
- illuminate/config >=5.6 <6.0
- filp/whoops ^2.2
- ramsey/uuid ^3.7
Last update
2019/06/13 11:26
License
Require
- php >=7.1
- ext-json *
- illuminate/support >=5.6 <6.0
- illuminate/view >=5.6 <6.0
- illuminate/routing >=5.6 <6.0
- illuminate/http >=5.6 <6.0
- illuminate/console >=5.6 <6.0
- illuminate/database >=5.6 <6.0
- illuminate/config >=5.6 <6.0
- filp/whoops ^2.2
- ramsey/uuid ^3.7
- yajra/laravel-datatables-oracle >=8.0
Last update
2019/06/11 06:22
License
Require
- php >=7.1
- ext-json *
- illuminate/support >=5.6 <6.0
- illuminate/view >=5.6 <6.0
- illuminate/routing >=5.6 <6.0
- illuminate/http >=5.6 <6.0
- illuminate/console >=5.6 <6.0
- illuminate/database >=5.6 <6.0
- illuminate/config >=5.6 <6.0
- filp/whoops ^2.2
- ramsey/uuid ^3.7
- yajra/laravel-datatables-oracle >=8.0
Last update
2019/06/11 05:26
License
Require
- php >=7.1
- ext-json *
- illuminate/support >=5.6 <6.0
- illuminate/view >=5.6 <6.0
- illuminate/routing >=5.6 <6.0
- illuminate/http >=5.6 <6.0
- illuminate/console >=5.6 <6.0
- illuminate/database >=5.6 <6.0
- illuminate/config >=5.6 <6.0
- filp/whoops ^2.2
- ramsey/uuid ^3.7
- yajra/laravel-datatables-oracle >=8.0
Last update
2019/06/04 14:18
License
Require
- php >=7.1
- laravel/framework >=5.6 <6.0
- filp/whoops ^2.2
- ext-json *
- yajra/laravel-datatables-oracle >=8.0
Last update
2019/06/04 10:44
License
Require
- php >=7.1
- laravel/framework >=5.6 <6.0
- filp/whoops ^2.2
- ext-json *
- yajra/laravel-datatables-oracle >=8.0
Last update
2019/06/04 09:50
License
Require
- php >=7.1
- laravel/framework >=5.0 <6.0
- filp/whoops ^2.2@dev
- ext-json *
- yajra/laravel-datatables-oracle ~9.0
Better Error Reports for Laravel
Why this package exists? Sometimes errors happens on production but default error report does not log the environment variables and etc. It is hard to track the error with limited information but its too heavy for server to store all information. This package will detect repeated errors and store only limited sample for each error.
Installation
composer install eslym/laravel-error-report ^2.0
Usage
- Migrate database
- Use the report function
- Schedule cleanup
// app/Exceptions/Handler.php
...
public function report(Exception $exception)
{
if($this->shouldReport($exception)){
\Eslym\ErrorReport\Facades\Reporter::report($exception);
}
}
...
// app/Console/Kernel.php
$schedule->command('errors:cleanup')
->daily();