Download the PHP package aporat/laravel-cloudwatch-logger without Composer
On this page you can find all versions of the php package aporat/laravel-cloudwatch-logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download aporat/laravel-cloudwatch-logger
More information about aporat/laravel-cloudwatch-logger
Files in aporat/laravel-cloudwatch-logger
Package laravel-cloudwatch-logger
Short Description A Laravel logging driver for AWS CloudWatch Logs integration
License MIT
Homepage https://github.com/aporat/laravel-cloudwatch-logger
Informations about the package laravel-cloudwatch-logger
Laravel CloudWatch Logger
A Laravel logging driver for seamless integration with AWS CloudWatch Logs.
Features
- Custom Monolog channel for sending logs to CloudWatch.
- Configurable AWS credentials, log group, stream, and retention period.
- Support for custom log formatters (e.g., JSON, line format).
- Compatible with Laravel’s native logging system via the
Log
facade. - Built-in configuration publishing for easy setup.
Requirements
- PHP: 8.2 or higher
- Laravel: 10.x, 11.x, 12.x
- AWS SDK: Provided via
phpnexus/cwh
dependency
Installation
Install the package via Composer:
The service provider (CloudWatchLoggerServiceProvider
) is automatically registered via Laravel’s package discovery. If auto-discovery is disabled, add it to config/app.php
:
Publish the configuration file:
This copies cloudwatch-logger.php
to your config/
directory.
Configuration
Step 1: Add the CloudWatch Channel
Merge the CloudWatch configuration into config/logging.php
under the channels
key:
Step 2: Set the Log Channel
Update your .env
file to use the cloudwatch
channel:
Step 3: Configure AWS Credentials
Add your AWS credentials and optional CloudWatch settings to .env
:
Usage
Log messages using Laravel’s Log
facade, and they’ll be sent to CloudWatch:
Custom Formatter
Override the default formatter in config/logging.php
:
Or use a custom callable:
Testing
Run the test suite:
Generate coverage reports:
Contributing
Contributions are welcome! Please:
- Fork the repository.
- Create a feature branch (
git checkout -b feature/new-feature
). - Commit your changes (
git commit -m "Add new feature"
). - Push to the branch (
git push origin feature/new-feature
). - Open a pull request.
Report issues at GitHub Issues.
License
This package is licensed under the License File for details.
Support
- Issues: GitHub Issues
- Source: GitHub Repository
All versions of laravel-cloudwatch-logger with dependencies
ext-json Version *
illuminate/support Version ^10.0 || ^11.0 || ^12.0
illuminate/log Version ^10.0 || ^11.0 || ^12.0
phpnexus/cwh Version ^2.0 || ^3.0