Skip to content

Commit a0c1211

Browse files
authored
Merge pull request #8 from oyed/patch-1
QOL changes to README
2 parents 374d536 + 2924ff8 commit a0c1211

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You must install the service provider:
3737
'providers' => [
3838
...
3939
NotificationChannels\Twilio\TwilioProvider::class,
40-
];
40+
],
4141
```
4242

4343
### Setting up your Twilio account
@@ -46,12 +46,13 @@ Add your Twilio Account SID, Auth Token, and From Number (optional) to your `con
4646

4747
```php
4848
// config/services.php
49-
50-
'twilio' => [
51-
'account_sid' => env('TWILIO_ACCOUNT_SID'),
52-
'auth_token' => env('TWILIO_AUTH_TOKEN'),
53-
'from' => env('TWILIO_FROM'), // optional
54-
]
49+
...
50+
'twilio' => [
51+
'account_sid' => env('TWILIO_ACCOUNT_SID'),
52+
'auth_token' => env('TWILIO_AUTH_TOKEN'),
53+
'from' => env('TWILIO_FROM'), // optional
54+
],
55+
...
5556
```
5657

5758
## Usage

0 commit comments

Comments
 (0)