magentron/laravel-api-logger

Laravel API logger to log responses and requests to file.

0.2.0-beta 2021-02-15 16:29 UTC

This package is auto-updated.

Last update: 2024-04-17 19:54:09 UTC


README

Laravel 6.10.12+

Laravel component to log API requests and responses to file.

Requirements

Perhaps it works with lesser versions as well, but this is untested.

  • PHP 5.6 or above
  • Laravel 5.4 or above

Installation

Add package via composer:

composer require magentron/laravel-api-logger

For Laravel version < 5.5, edit config/app.php, add the following to the providers array:

Magentron\ApiLogger\Providers\ServiceProvider::class,

Usage

TODO

TODO

  • Use Monolog or other log writers to support other destinations than file system
  • Restrict logging to specific HTTP methods and/or URI's
  • Specify HTTP status codes to log
  • Write tests and gain 100% code coverage

Author

Jeroen Derks, a.k.a Magentron

Inspiration

This project was inspired by the following projects:

License

laravel-api-logger is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

laravel-api-logger is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with laravel-api-logger. If not, see http://www.gnu.org/licenses/.