From 688801827980e882a500b0092b5f4fa0f2b40e08 Mon Sep 17 00:00:00 2001 From: Nguyen Vu Hung Date: Tue, 29 Aug 2023 15:20:49 +0700 Subject: [PATCH] temporary use another cloudwatch logs handler library (#42) * temporary use another cloudwatch logs handler library * update Logger.php to use new package --------- Co-authored-by: Nguyen Vu Hung --- composer.json | 2 +- src/Logger.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 20b07bb..a6786bf 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } }, "require": { - "maxbanton/cwh": "^1.1.14 || ^2.0", + "phpnexus/cwh": "^1.1.14 || ^2.0 || ^3.0.0", "illuminate/support": "^5.1 || ^6.0 || ^7.0 || ^8.0 || ^9.0|^10.0" }, "require-dev": { diff --git a/src/Logger.php b/src/Logger.php index f1dcd9f..73c8115 100644 --- a/src/Logger.php +++ b/src/Logger.php @@ -3,7 +3,7 @@ namespace Pagevamp; use Aws\CloudWatchLogs\CloudWatchLogsClient; -use Maxbanton\Cwh\Handler\CloudWatch; +use Phpnexus\Cwh\Handler\CloudWatch; use Monolog\Formatter\LineFormatter; use Pagevamp\Exceptions\IncompleteCloudWatchConfig;