Download the PHP package sl-projects/laravel-request-logger without Composer
On this page you can find all versions of the php package sl-projects/laravel-request-logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sl-projects/laravel-request-logger
More information about sl-projects/laravel-request-logger
Files in sl-projects/laravel-request-logger
Package laravel-request-logger
Short Description A Laravel package to log all incoming HTTP requests
License MIT
Informations about the package laravel-request-logger
Laravel Request Logger
Laravel Request Logger is a package designed to log all incoming HTTP requests in a Laravel application. It provides middleware to capture request details and store them efficiently using caching and database storage.
NOTE: This package has no connection with the Laravel framework or its creators. It is an independent project developed by Sofiane Lasri, mainly for educational purposes.
Features
- Logs IP addresses, country codes, HTTP methods, content lengths, status codes, user agents, MIME types, URLs, referers, and origins.
- Uses caching for efficient database operations.
- Provides a command to persist logged requests from cache to the database.
- Includes factories for testing and seeding purposes.
- Supports Laravel 11.9+ and PHP 8.2+ (but may work with older versions).
Installation
You can install the package via Composer:
After installing, the package will automatically register its service provider.
Configuration
-
Migrations: Run the migrations to create the necessary database tables.
-
Middleware: Add the
SaveRequestMiddleware
to your HTTP kernel or specific routes you want to log.You can off course add the middleware to specific routes only, and use imports.
-
Scheduler: Add the
SaveRequests
command to the Laravel scheduler to persist the cached requests to the database. - Configuration (optional): Publish the configuration file to customize the package settings.
Usage
Logging Requests
The middleware automatically logs requests to the cache. You can customize which routes to log by applying the middleware selectively.
Saving Requests
To persist the cached requests to the database, use the provided Artisan command:
This command will dispatch a job to save the requests asynchronously.
Contributing
Contributions are welcome! Since it is my first package, I would appreciate any feedback, suggestions, or improvements you can provide.
License
This package is open-source software licensed under the MIT license.
Author
Developed by Sofiane Lasri.
For any inquiries or suggestions, feel free to create an issue.