From 9fc3da1e17c92ea003369c73145b81515418c43f Mon Sep 17 00:00:00 2001 From: Gareth Nicholson Date: Thu, 11 Feb 2021 12:34:29 +0200 Subject: [PATCH] Update namespaces. --- composer.json | 8 ++++---- src/ClickatellChannel.php | 4 ++-- src/ClickatellClient.php | 4 ++-- src/ClickatellMessage.php | 2 +- src/ClickatellServiceProvider.php | 2 +- src/Exceptions/CouldNotSendNotification.php | 2 +- tests/ClickatellClientTest.php | 6 +++--- tests/ClickatellMessageTest.php | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/composer.json b/composer.json index e5a5e8f..1d004e0 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "io-digital/clickatell", "description": "Clickatell notifications driver", "keywords": ["laravel", "notifications", "clickatell", "sms"], - "homepage": "https://github.com/laravel-notification-channels/clickatell", + "homepage": "https://github.com/io-digital/clickatell/clickatell", "license": "MIT", "authors": [ { @@ -33,12 +33,12 @@ }, "autoload": { "psr-4": { - "NotificationChannels\\Clickatell\\": "src" + "IoDigital\\Clickatell\\": "src" } }, "autoload-dev": { "psr-4": { - "NotificationChannels\\Clickatell\\Test\\": "tests" + "IoDigital\\Clickatell\\Test\\": "tests" } }, "config": { @@ -50,7 +50,7 @@ "extra": { "laravel": { "providers": [ - "NotificationChannels\\Clickatell\\ClickatellServiceProvider" + "IoDigital\\Clickatell\\ClickatellServiceProvider" ] } } diff --git a/src/ClickatellChannel.php b/src/ClickatellChannel.php index b2d0107..e0f1321 100644 --- a/src/ClickatellChannel.php +++ b/src/ClickatellChannel.php @@ -1,9 +1,9 @@