Laravel integration package with Rocketeers app.
You can install this package via Composer:
composer require rocketeers-app/rocketeers-laravel
Configure rocketeers
in your stack
logging configuration, so you keep your normal logging with additional Rocketeers logging:
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['rocketeers', 'daily'],
'ignore_exceptions' => false,
],
'rocketeers' => [
'driver' => 'rocketeers',
'level' => 'debug',
],
// ...
Make sure that in the logging configuration the default log channel is stack
:
'default' => env('LOG_CHANNEL', 'stack'),
Add the Rocketeers config file to your Laravel app:
<?php
return [
'rocketeers.api_token' => env('ROCKETEERS_API_TOKEN'),
];
And at last, add the ROCKETEERS_API_TOKEN
in your .env
file.
Please see CHANGELOG for more information what has changed recently.
For Laravel 10.x and up use v2.0.0
.
For Laravel 9.x and below use v1.0.0
or the release/v1
branch.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email mark@vaneijk.co instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.