Browse Source

Working on configuration files.

Taylor Otwell 11 years ago
parent
commit
7d60aa4235
2 changed files with 17 additions and 1 deletions
  1. 1 1
      app/config/mail.php
  2. 16 0
      app/config/services.php

+ 1 - 1
app/config/mail.php

@@ -11,7 +11,7 @@ return array(
 	| 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"
 	|
 	*/
 

+ 16 - 0
app/config/services.php

@@ -0,0 +1,16 @@
+<?php return array(
+
+	'mailgun' => array(
+		'secret' => '',
+	),
+
+	'mandrill' => array(
+		'secret' => '',
+	),
+
+	'stripe' => array(
+		'model'  => 'User',
+		'secret' => '',
+	),
+
+);