Skip to content

Commit

Permalink
changed package identifier & fixed the logo
Browse files Browse the repository at this point in the history
  • Loading branch information
mkwsra committed Apr 22, 2020
1 parent 8eeb662 commit 193e6e9
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 21 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Mohamed Kawsara - Liliom <info@liliomlab.com>
Copyright (c) 2016 Mohamed Kawsara - Multicaret <info@multicaret.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<p align="center">
<img src="http://unifonic.com/wp-content/uploads/2016/08/logo-1.png">
<img src="http://www.unifonic.com/wp-content/themes/unifonic/images/logo.png">
</p>


# 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

<p align="center">
<a href="https://packagist.org/packages/liliom/unifonic-notification-channel"><img src="https://poser.pugx.org/liliom/unifonic-notification-channel/d/total.svg" alt="Total Downloads"></a>
<a href="https://packagist.org/packages/liliom/unifonic-notification-channel"><img src="https://poser.pugx.org/liliom/unifonic-notification-channel/v/stable.svg" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/liliom/unifonic-notification-channel"><img src="https://poser.pugx.org/liliom/unifonic-notification-channel/license.svg" alt="License"></a>
<a href="https://packagist.org/packages/multicaret/unifonic-notification-channel"><img src="https://poser.pugx.org/multicaret/unifonic-notification-channel/d/total.svg" alt="Total Downloads"></a>
<a href="https://packagist.org/packages/multicaret/unifonic-notification-channel"><img src="https://poser.pugx.org/multicaret/unifonic-notification-channel/v/stable.svg" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/multicaret/unifonic-notification-channel"><img src="https://poser.pugx.org/multicaret/unifonic-notification-channel/license.svg" alt="License"></a>
</p>


Expand All @@ -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.
Expand Down Expand Up @@ -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
{
Expand Down Expand Up @@ -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.
Please see [CHANGELOG](CHANGELOG.md) for more information about what has changed recently.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "liliom/unifonic-notification-channel",
"name": "multicaret/unifonic-notification-channel",
"description": "Unifonic Notification Channel for laravel.",
"keywords": [
"laravel",
Expand All @@ -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",
Expand All @@ -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": {
Expand All @@ -41,7 +41,7 @@
},
"laravel": {
"providers": [
"Liliom\\Notifications\\UnifonicChannelServiceProvider"
"Multicaret\\Notifications\\UnifonicChannelServiceProvider"
]
}
},
Expand Down
8 changes: 4 additions & 4 deletions src/Channels/UnifonicSmsChannel.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Liliom\Notifications\Channels;
namespace Multicaret\Notifications\Channels;

use Illuminate\Notifications\Notification;
use Liliom\Notifications\Messages\UnifonicMessage;
use Liliom\Unifonic\UnifonicClient;
use Liliom\Unifonic\UnifonicManager;
use Multicaret\Notifications\Messages\UnifonicMessage;
use Multicaret\Unifonic\UnifonicClient;
use Multicaret\Unifonic\UnifonicManager;

class UnifonicSmsChannel
{
Expand Down
2 changes: 1 addition & 1 deletion src/Messages/UnifonicMessage.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Liliom\Notifications\Messages;
namespace Multicaret\Notifications\Messages;

class UnifonicMessage
{
Expand Down
4 changes: 2 additions & 2 deletions src/UnifonicChannelServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace Liliom\Notifications;
namespace Multicaret\Notifications;

use Illuminate\Support\ServiceProvider;
use Liliom\Unifonic\UnifonicManager;
use Multicaret\Unifonic\UnifonicManager;

class UnifonicChannelServiceProvider extends ServiceProvider
{
Expand Down

0 comments on commit 193e6e9

Please sign in to comment.