mrthat1996 / klee-bugs-report
Log bugs using Klee
Installs: 2 561
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
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);