Skip to content

Commit

Permalink
change in terminology from app sid to app id
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad Kawsara committed Feb 16, 2019
1 parent 49c3635 commit 80edf9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
## v1.0.1
* Change in terminology from _app id_ to _app id_

## v1.0.0
* Initial Release
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ The service provider gets loaded automatically.

### Setting up the Unifonic service

Hit to [Dashboard](https://software.unifonic.com/en/dashboard) to create a new REST app to use this channel. Within in this app, you will find the `APP SID`. Place it inside your `.env` file. To load it, add this to your `config/services.php` file:
Hit to [Dashboard](https://software.unifonic.com/en/dashboard) to create a new REST app to use this channel. Within in this app, you will find the *App ID*. Place it inside your `.env` file. To load it, add this to your `config/services.php` file:

```php
...
'unifonic' => [
'app_id' => env('UNIFONIC_APP_SID'),
'app_id' => env('UNIFONIC_APP_ID'),
'sender_id' => env('UNIFONIC_SENDER_ID') //optional
]
...
```

This will load the Unifonic app data from the `.env` file. Make sure to use the same keys you have used there like `UNIFONIC_APP_SID`.
This will load the Unifonic app data from the `.env` file. Make sure to use the same keys you have used there like `UNIFONIC_APP_ID`.

## Usage

Expand Down

0 comments on commit 80edf9c

Please sign in to comment.