Skip to content

Commit

Permalink
minor fixes in readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad Kawsara committed Feb 15, 2019
1 parent a647d00 commit b5fad75
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Laravel 5.x Unifonic
Start sending SMS and making Voice calls with Unifonic right away using Laravel.

<p align="center">
<img src="http://unifonic.com/wp-content/uploads/2016/08/logo-1.png">
</p>


# Laravel Unifonic 5.x
Start sending SMS and making Voice calls with Unifonic right away using Laravel.


<p align="center">
<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>
<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>
Expand Down Expand Up @@ -45,7 +47,7 @@ And add the alias as well
],
```

####Configurations:
## Configurations
Add to your `config/services.php` a new array as the following
```
'unifonic' => [
Expand All @@ -61,9 +63,9 @@ UNIFONIC_APP_SID={YOUR_DEFAULT_APP_ID}
```

---
### Usage
## Usage

####Account related methods:
#### Account related methods:
```php
Unifonic::getBalance();
Unifonic::addSenderID(string $senderID);
Expand All @@ -72,7 +74,7 @@ Unifonic::addSenderID(string $senderID);
Unifonic::testCredentials();
```

####Messages related methods:
#### Messages related methods:
```php
Unifonic::send(int $recipient, string $message, string $senderID = null);
Unifonic::sendBulk(array $recipients, string $message, string $senderID = null);
Expand All @@ -95,7 +97,7 @@ Unifonic::async()->callback(Callable $requestCallback)
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).


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

### Change Log
Expand Down

0 comments on commit b5fad75

Please sign in to comment.