Skip to content

Instantly share code, notes, and snippets.

@orobogenius
Created February 20, 2019 20:18
Show Gist options
  • Save orobogenius/f01f76eea492b3424bf1599163172fd4 to your computer and use it in GitHub Desktop.
Save orobogenius/f01f76eea492b3424bf1599163172fd4 to your computer and use it in GitHub Desktop.
<?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