ageekdev / vapor-http-logger
This package can log incoming requests to the cloud watch for laravel vapor application.
Installs: 15 381
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
- illuminate/contracts: ^9.0|^10.0|^11.0
Requires (Dev)
- larastan/larastan: ^2.4.1
- laravel/pint: ^1.10
- orchestra/testbench: ^7.31|^8.11|^9.0
- pestphp/pest: ^1.0|^2.0
- pestphp/pest-plugin-laravel: ^1.4|^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- roave/security-advisories: dev-latest
README
Log HTTP requests in Laravel Vapor applications
Installation
You can install the package via composer:
composer require ageekdev/vapor-http-logger
You can publish the config file with:
php artisan vendor:publish --provider="AgeekDev\HttpLogger\HttpLoggerServiceProvider" --tag="config"
This is the contents of the published config file:
return [ /* * Automatic registration of middleware will only happen if this setting is `true` */ 'enabled' => env('HTTP_LOGGER_ENABLED', true), /* * The log profile which determines whether a request should be logged. * It should implement `LogProfile`. */ 'log_profile' => \AgeekDev\HttpLogger\LogNonGetRequests::class, /* * The log writer used to write the request to a log. * It should implement `LogWriter`. */ 'log_writer' => \AgeekDev\HttpLogger\DefaultLogWriter::class, /* * The log channel used to write the request. */ 'log_channel' => env('LOG_CHANNEL', 'stderr'), /* * The log level used to log the request. */ 'log_level' => 'info', /* * List of request methods that will be logged. */ 'request_methods' => ['post', 'put', 'patch', 'delete'], /* * Filter out body fields which will never be logged. */ 'except' => [ 'password', 'password_confirmation', ], /* * List of headers that will be sanitized. For example Authorization, Cookie, Set-Cookie... */ 'sanitize_headers' => [], ];
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
This package contains code copied from Log HTTP requests
License
The MIT License (MIT). Please see License File for more information.