LaravelPackages.net
Acme Inc.
Toggle sidebar
smoothphp/laravel-papertrail-event-bus-logger

Log Smoothphp EventBus events in papertrail

250
0
v2.0.0
About smoothphp/laravel-papertrail-event-bus-logger

smoothphp/laravel-papertrail-event-bus-logger is a Laravel package for log smoothphp eventbus events in papertrail. It currently has 0 GitHub stars and 250 downloads on Packagist (latest version v2.0.0). Install it with composer require smoothphp/laravel-papertrail-event-bus-logger. Discover more Laravel packages by smoothphp or browse all Laravel packages to compare alternatives.

Last updated

LaravelPapertrailEventBusLogger

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

Install

Via Composer

$ composer require smoothphp/laravel-papertrail-event-bus-logger

Usage

Add the following to services.php config file

'papertrail' => [
        'host' => '*.papertrailapp.com',
        'port' => 111111,
        'name' => 'app name',
]

add \SmoothPhp\LaravelPapertrailEventBusLogger\PapertrailEventLogger::class, to cqrses.php event_bus_listeners e.g.

    'event_bus_listeners'   => [
        \SmoothPhp\LaravelAdapter\EventBus\EventBusLogger::class,
        \SmoothPhp\LaravelAdapter\StrongConsistency\PushEventThroughQueueWithCommandId::class,
        \SmoothPhp\LaravelPapertrailEventBusLogger\PapertrailEventLogger::class,

    ],

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Comments