Commit 8061c213 authored by Taylor Otwell's avatar Taylor Otwell

Convert some variables to env variables in services.php.

parent 0cf34a3b
......@@ -15,24 +15,24 @@ return [
*/
'mailgun' => [
'domain' => '',
'secret' => '',
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
],
'mandrill' => [
'secret' => '',
'secret' => env('MANDRILL_SECRET'),
],
'ses' => [
'key' => '',
'secret' => '',
'key' => env('SES_KEY'),
'secret' => env('SES_SECRET'),
'region' => 'us-east-1',
],
'stripe' => [
'model' => App\User::class,
'key' => '',
'secret' => '',
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
],
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment