Working on configuration files.
This commit is contained in:
parent
0b390e397e
commit
7d60aa4235
|
@ -11,7 +11,7 @@
|
||||||
| sending of e-mail. You may specify which one you're using throughout
|
| sending of e-mail. You may specify which one you're using throughout
|
||||||
| your application here. By default, Laravel is setup for SMTP mail.
|
| your application here. By default, Laravel is setup for SMTP mail.
|
||||||
|
|
|
|
||||||
| Supported: "smtp", "mail", "sendmail"
|
| Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill"
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?php return array(
|
||||||
|
|
||||||
|
'mailgun' => array(
|
||||||
|
'secret' => '',
|
||||||
|
),
|
||||||
|
|
||||||
|
'mandrill' => array(
|
||||||
|
'secret' => '',
|
||||||
|
),
|
||||||
|
|
||||||
|
'stripe' => array(
|
||||||
|
'model' => 'User',
|
||||||
|
'secret' => '',
|
||||||
|
),
|
||||||
|
|
||||||
|
);
|
Loading…
Reference in New Issue