Skip to content

Commit 2924ff8

Browse files
authored
QOL changes to README
- Replaced a breaking semi-colon with a comma - Formatted `Setting up your Twilio account` a bit better
1 parent 374d536 commit 2924ff8

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)