From 7d60aa4235b21aff26e2a720bbd5480c3651db8f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 14 Mar 2014 16:22:03 -0500 Subject: [PATCH] Working on configuration files. --- app/config/mail.php | 2 +- app/config/services.php | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 app/config/services.php diff --git a/app/config/mail.php b/app/config/mail.php index a7151a06..64070e28 100644 --- a/app/config/mail.php +++ b/app/config/mail.php @@ -11,7 +11,7 @@ | sending of e-mail. You may specify which one you're using throughout | your application here. By default, Laravel is setup for SMTP mail. | - | Supported: "smtp", "mail", "sendmail" + | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill" | */ diff --git a/app/config/services.php b/app/config/services.php new file mode 100644 index 00000000..51fd8792 --- /dev/null +++ b/app/config/services.php @@ -0,0 +1,16 @@ + array( + 'secret' => '', + ), + + 'mandrill' => array( + 'secret' => '', + ), + + 'stripe' => array( + 'model' => 'User', + 'secret' => '', + ), + +); \ No newline at end of file