Download the PHP package hoangphison/laravel-http-logger without Composer
On this page you can find all versions of the php package hoangphison/laravel-http-logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hoangphison/laravel-http-logger
More information about hoangphison/laravel-http-logger
Files in hoangphison/laravel-http-logger
Package laravel-http-logger
Short Description A Laravel 5 package to log HTTP requests
License MIT
Homepage https://github.com/hoangphison/laravel-http-logger
Informations about the package laravel-http-logger
Log HTTP requests
This package adds a middleware which can log incoming requests to the default log. If anything goes wrong during a user's request, you'll still be able to access the original request data sent by that user.
This log acts as an extra safety net for critical user submissions, such as forms that generate leads.
Installation
You can install the package via composer:
Optionally you can publish the configfile with:
This is the contents of the published config file:
Usage
This packages provides a middleware which can be added as a global middleware or as a single route.
Logging
Two classes are used to handle the logging of incoming requests:
a LogProfile
class will determine whether the request should be logged,
and LogWriter
class will write the request to a log.
A default log implementation is added within this package.
It will only log POST
, PUT
, PATCH
, and DELETE
requests
and it will write to the default Laravel logger.
You're free to implement your own log profile and/or log writer classes,
and configure it in config/http-logger.php
.
A custom log profile must implement \Spatie\HttpLogger\LogProfile
.
This interface requires you to implement shouldLogRequest
.
A custom log writer must implement \Spatie\HttpLogger\LogWriter
.
This interface requires you to implement logRequest
.
Testing
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Postcardware
You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
We publish all received postcards on our company website.
Credits
- Brent Roose
- All Contributors
Support us
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
Does your business depend on our contributions? Reach out and support us on Patreon. All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.
License
The MIT License (MIT). Please see License File for more information.