Skip to content

Commit ca945ed

Browse files
committed
fixed logo & updated company name
1 parent 6e682aa commit ca945ed

File tree

9 files changed

+31
-28
lines changed

9 files changed

+31
-28
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.0.2
2+
* Change in identifier name, company name
3+
14
## v1.0.1
25
* Change in terminology from app sid to app id
36

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

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

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<p align="center">
2-
<img src="http://unifonic.com/wp-content/uploads/2016/08/logo-1.png">
2+
<img src="http://www.unifonic.com/wp-content/themes/unifonic/images/logo.png">
33
</p>
44

55

6-
# Laravel Unifonic 5.x
6+
# Laravel Unifonic 7.x
77
Start sending SMS and making Voice calls with Unifonic right away using Laravel.
88

99

1010
<p align="center">
11-
<a href="https://packagist.org/packages/liliom/laravel-unifonic"><img src="https://poser.pugx.org/liliom/laravel-unifonic/d/total.svg" alt="Total Downloads"></a>
12-
<a href="https://packagist.org/packages/liliom/laravel-unifonic"><img src="https://poser.pugx.org/liliom/laravel-unifonic/v/stable.svg" alt="Latest Stable Version"></a>
13-
<a href="https://packagist.org/packages/liliom/laravel-unifonic"><img src="https://poser.pugx.org/liliom/laravel-unifonic/license.svg" alt="License"></a>
11+
<a href="https://packagist.org/packages/multicaret/laravel-unifonic"><img src="https://poser.pugx.org/multicaret/laravel-unifonic/d/total.svg" alt="Total Downloads"></a>
12+
<a href="https://packagist.org/packages/multicaret/laravel-unifonic"><img src="https://poser.pugx.org/multicaret/laravel-unifonic/v/stable.svg" alt="Latest Stable Version"></a>
13+
<a href="https://packagist.org/packages/multicaret/laravel-unifonic"><img src="https://poser.pugx.org/multicaret/laravel-unifonic/license.svg" alt="License"></a>
1414
</p>
1515

1616
---
@@ -19,21 +19,21 @@ Start sending SMS and making Voice calls with Unifonic right away using Laravel.
1919
First, install the package through Composer.
2020

2121
```sh
22-
$ composer require liliom/laravel-unifonic
22+
$ composer require multicaret/laravel-unifonic
2323
```
2424

25-
#### Laravel 5.5 and up
26-
27-
You don't have to do anything else, this package uses the Package Auto-Discovery feature, and should be available as soon as you install it via Composer.
28-
2925
#### Laravel 5.4 and down
3026

3127
Then include the service provider inside `config/app.php`.
3228

29+
#### Laravel 5.5 and up
30+
31+
You don't have to do anything else, this package uses the Package Auto-Discovery feature, and should be available as soon as you install it via Composer.
32+
3333
```php
3434
'providers' => [
3535
...
36-
Liliom\Unifonic\UnifonicServiceProvider::class,
36+
Multicaret\Unifonic\UnifonicServiceProvider::class,
3737
...
3838
];
3939
```
@@ -42,7 +42,7 @@ And add the alias as well
4242
```php
4343
'aliases' => [
4444
...
45-
'Unifonic' => Liliom\Unifonic\UnifonicFacade::class,
45+
'Unifonic' => Multicaret\Unifonic\UnifonicFacade::class,
4646
...
4747
],
4848
```
@@ -94,11 +94,11 @@ Unifonic::async()->callback(Callable $requestCallback)
9494
```
9595

9696

97-
For more details about the parameters please refer to the [Api Documentation](http://docs.unifonic.apiary.io/) for more info, or read the [source code](https://github.com/liliomlab/laravel-unifonic/blob/master/src/UnifonicClient.php).
97+
For more details about the parameters please refer to the [Api Documentation](http://docs.unifonic.apiary.io/) for more info, or read the [source code](https://github.com/multicaret/laravel-unifonic/blob/master/src/UnifonicClient.php).
9898

9999

100100
### Contributing
101101
See the [CONTRIBUTING](CONTRIBUTING.md) guide.
102102

103103
### Changelog
104-
Please see [CHANGELOG](CHANGELOG.md) for more information about what has changed recently.
104+
Please see [CHANGELOG](CHANGELOG.md) for more information about what has changed recently.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "liliom/laravel-unifonic",
2+
"name": "multicaret/laravel-unifonic",
33
"description": " A library to integrate with Unifonic API. Sending SMS, making Voice and VOIP calls, TTS calls, and 2FA",
44
"keywords": [
55
"laravel",
@@ -32,16 +32,16 @@
3232
],
3333
"autoload": {
3434
"psr-4": {
35-
"Liliom\\Unifonic\\": "src/"
35+
"Multicaret\\Unifonic\\": "src/"
3636
}
3737
},
3838
"extra": {
3939
"laravel": {
4040
"providers": [
41-
"Liliom\\Unifonic\\UnifonicServiceProvider"
41+
"Multicaret\\Unifonic\\UnifonicServiceProvider"
4242
],
4343
"aliases": {
44-
"Unifonic": "Liliom\\Unifonic\\UnifonicFacade"
44+
"Unifonic": "Multicaret\\Unifonic\\UnifonicFacade"
4545
}
4646
}
4747
},

src/UnifonicClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Liliom\Unifonic;
3+
namespace Multicaret\Unifonic;
44

55
use GuzzleHttp\Client;
66

@@ -245,4 +245,4 @@ private function post($endPoint)
245245

246246
return $this->client->post(self::API_URL . $endPoint, $this->headers);
247247
}
248-
}
248+
}

src/UnifonicClientContract.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Liliom\Unifonic;
3+
namespace Multicaret\Unifonic;
44

55

66
interface UnifonicClientContract
@@ -17,4 +17,4 @@ public function getBalance();
1717

1818
public function addSenderID(string $senderID);
1919

20-
}
20+
}

src/UnifonicFacade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Liliom\Unifonic;
3+
namespace Multicaret\Unifonic;
44

55
use Illuminate\Support\Facades\Facade;
66

@@ -17,4 +17,4 @@ protected static function getFacadeAccessor()
1717
{
1818
return 'unifonic';
1919
}
20-
}
20+
}

src/UnifonicManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Liliom\Unifonic;
3+
namespace Multicaret\Unifonic;
44

55

66
class UnifonicManager
@@ -55,4 +55,4 @@ public function __call($method, $parameters)
5555
return call_user_func_array([$this->client, $method], $parameters);
5656
}
5757

58-
}
58+
}

src/UnifonicServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Liliom\Unifonic;
3+
namespace Multicaret\Unifonic;
44

55
use Illuminate\Support\ServiceProvider;
66

0 commit comments

Comments
 (0)