rawphp/laravel-communication-logger

Communication logger for Laravel PHP applications.
37
Install
composer require rawphp/laravel-communication-logger
PHP:>=5.6
License:MIT
Last Updated:Jul 24, 2016
Links: GitHub  ·  Packagist
Maintainer: rawphp

Laravel Communication Provider

Build Status

1. Install

As always, we need to pull in some dependencies through Composer.

composer require rawphp/laravel-communication-logger

2. Register Provider

RawPHP\LaravelCommunicationLogger\CommunicationLoggerProvider::class,

3. Register Middleware

Add the CommunicationLog middleware to the Kernel middleware array. This allows all requests and responses to be logged.

/**
 * The application's route middleware groups.
 *
 * @var array
 */
protected $middlewareGroups = [
        CommunicationsLog::class,
    ],
];

3. Publish Config

php artisan vendor:publish --provider="RawPHP\LaravelCommunicationLogger\CommunicationLoggerProvider"