Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
svenedik committed Oct 30, 2023
2 parents a598e5c + f769c57 commit 4220368
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
15 changes: 10 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phpnexus/cwh",
"homepage": "https://github.com/phpnexus/cwh",
"name": "useinsider/cwh",
"homepage": "https://github.com/useinsider/cwh",
"type": "library",
"description": "AWS CloudWatch Handler for Monolog library",
"keywords": [
Expand All @@ -20,8 +20,8 @@
"test": "phpunit"
},
"support": {
"issues": "https://github.com/phpnexus/cwh/issues",
"source": "https://github.com/phpnexus/cwh"
"issues": "https://github.com/useinsider/cwh/issues",
"source": "https://github.com/useinsider/cwh"
},
"require": {
"php": ">=8.1",
Expand All @@ -40,7 +40,12 @@
},
"autoload": {
"psr-4": {
"PhpNexus\\Cwh\\": "src"
"Insider\\Cwh\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Insider\\Cwh\\Tests\\": "tests"
}
},
"minimum-stability": "stable"
Expand Down
2 changes: 1 addition & 1 deletion src/Handler/CloudWatch.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace PhpNexus\Cwh\Handler;
namespace Insider\Cwh\Handler;

use Aws\CloudWatchLogs\CloudWatchLogsClient;
use Monolog\Formatter\FormatterInterface;
Expand Down
4 changes: 2 additions & 2 deletions tests/Handler/CloudWatchTest.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace PhpNexus\Cwh\Test\Handler;
namespace Insider\Cwh\Handler;

use Aws\CloudWatchLogs\CloudWatchLogsClient;
use Aws\CloudWatchLogs\Exception\CloudWatchLogsException;
use Aws\Result;
use PhpNexus\Cwh\Handler\CloudWatch;
use Insider\Cwh\Handler\CloudWatch;
use Monolog\Formatter\LineFormatter;
use Monolog\LogRecord;
use Monolog\Level;
Expand Down

0 comments on commit 4220368

Please sign in to comment.