diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cefeeb..32edfc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## v1.0.2 +* Change in identifier name, company name + ## v1.0.1 * Change in terminology from _app id_ to _app id_ diff --git a/LICENSE b/LICENSE index 1038db2..749f4b6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016 Mohamed Kawsara - Liliom +Copyright (c) 2016 Mohamed Kawsara - Multicaret Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index d5d4231..14f0681 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@

- +

-# Unifonic notification channel for Laravel 5 +# Unifonic notification channel for Laravel 7.x The Unifonic channel makes it possible to send out Laravel notifications as SMS

-Total Downloads -Latest Stable Version -License +Total Downloads +Latest Stable Version +License

@@ -18,7 +18,7 @@ The Unifonic channel makes it possible to send out Laravel notifications as SMS You can install this package via composer: ``` bash -composer require liliom/unifonic-notification-channel +composer require multicaret/unifonic-notification-channel ``` The service provider gets loaded automatically. @@ -49,7 +49,7 @@ To use this package, you need to create a notification class, like `InvoicePaid` namespace App\Notifications; use Illuminate\Notifications\Notification; -use Liliom\Notifications\Messages\UnifonicMessage; +use Multicaret\Notifications\Messages\UnifonicMessage; class InvoicePaid extends Notification { @@ -140,4 +140,4 @@ Notification::route('unifonic', 'xxxxx') See the [CONTRIBUTING](CONTRIBUTING.md) guide. ### Changelog -Please see [CHANGELOG](CHANGELOG.md) for more information about what has changed recently. \ No newline at end of file +Please see [CHANGELOG](CHANGELOG.md) for more information about what has changed recently. diff --git a/composer.json b/composer.json index 59677e5..58fb3eb 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "liliom/unifonic-notification-channel", + "name": "multicaret/unifonic-notification-channel", "description": "Unifonic Notification Channel for laravel.", "keywords": [ "laravel", @@ -15,7 +15,7 @@ ], "require": { "php": "^7.1.3", - "liliom/laravel-unifonic": "^1.0" + "multicaret/laravel-unifonic": "^1.0" }, "require-dev": { "illuminate/notifications": "~5.7", @@ -24,12 +24,12 @@ }, "autoload": { "psr-4": { - "Liliom\\Notifications\\": "src/" + "Multicaret\\Notifications\\": "src/" } }, "autoload-dev": { "psr-4": { - "Liliom\\Tests\\Notifications\\": "tests/" + "Multicaret\\Tests\\Notifications\\": "tests/" } }, "config": { @@ -41,7 +41,7 @@ }, "laravel": { "providers": [ - "Liliom\\Notifications\\UnifonicChannelServiceProvider" + "Multicaret\\Notifications\\UnifonicChannelServiceProvider" ] } }, diff --git a/src/Channels/UnifonicSmsChannel.php b/src/Channels/UnifonicSmsChannel.php index 6fe25af..ce331eb 100644 --- a/src/Channels/UnifonicSmsChannel.php +++ b/src/Channels/UnifonicSmsChannel.php @@ -1,11 +1,11 @@