eilander / requestlogger
Laravel 5 request logger package.
v1.0.4
2016-05-10 10:45 UTC
Requires
- php: >=5.5.9
- laravel/framework: 5.1.*|5.2.*
README
Log all request and responses
Table of contents
[TOC]
Usage
Step 1: Add the Service Provider
In your config/app.php
add Eilander\RequestLogger\Providers\RequestLoggerServiceProvider:class
to the end of the providers
array:
<?php
'providers' => [
...
Eilander\RequestLogger\Providers\RequestLoggerServiceProvider::class,
],