mrthat1996 / klee-bugs-report
There is no license information available for the latest version (0.0.6) of this package.
Log bugs using Klee
Package info
github.com/mrthat1996/klee-bugs-report
Type:project
pkg:composer/mrthat1996/klee-bugs-report
0.0.6
2022-11-29 10:30 UTC
Requires
- php: ^7.4.0
- ext-json: *
- guzzlehttp/guzzle: ^7
- illuminate/config: ~5.0|~6.0|~7.0|^8.0
- illuminate/support: ~5.0|~6.0|~7.0|^8.0
README
Install
- Install the package
composer require mrthat1996/klee-bugs-report
- Add ServiceProvider to
config/app.php
Mrthat1996\KleeBugsReport\Providers\KleeBugsReportServiceProvider::class
- Public configuration (Optional)
php artisan vendor:publish --provider="Mrthat1996\KleeBugsReport\Providers\ServiceProvider"
- Config ENV
- Which error levels should be report
KLEE_LOG_LEVEL=error
- Which environments should be report
KLEE_LOG_ENV=development,staging
- Klee authentication token (Ask Alice for token)
KLEE_AUTH_TOKEN=TOKEN
- Facades
- Add alias to
config/app.php
'Klee' => Mrthat1996\KleeBugsReport\Facades\KleeFacade::class,
- To log a custom message
\Klee::log(string, array);