Created
February 20, 2019 20:18
-
-
Save orobogenius/f01f76eea492b3424bf1599163172fd4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| The default SMS Driver | |
|-------------------------------------------------------------------------- | |
| | |
| The default sms driver to use as a fallback when no driver is specified | |
| while using the SMS component. | |
| | |
*/ | |
'default' => env('SMS_DRIVER', 'nexmo'), | |
/* | |
|-------------------------------------------------------------------------- | |
| Nexmo Driver Configuration | |
|-------------------------------------------------------------------------- | |
| | |
| We specify key, secret, and the number messages will be sent from. | |
| | |
*/ | |
'nexmo' => [ | |
'key' => env('NEXMO_KEY', ''), | |
'secret' => env('NEXMO_SECRET', ''), | |
'from' => env('NEXMO_SMS_FROM', '') | |
], | |
/* | |
|-------------------------------------------------------------------------- | |
| Twilio Driver Configuration | |
|-------------------------------------------------------------------------- | |
| | |
| We specify key, secret, and the number messages will be sent from. | |
| | |
*/ | |
'twilio' => [ | |
'key' => env('TWILIO_KEY', ''), | |
'secret' => env('TWILIO_SECRET', ''), | |
'from' => env('TWILIO_SMS_FROM', '') | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment