This commit is contained in:
Graham Campbell
2014-12-20 21:20:17 +00:00
parent 26e4361d8a
commit 9d8d89248f
103 changed files with 2478 additions and 2353 deletions
+24 -24
View File
@@ -1,31 +1,31 @@
<?php
return array(
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, Mandrill, and others. This file provides a sane
| default location for this type of information, allowing packages
| to have a conventional place to find your various credentials.
|
*/
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, Mandrill, and others. This file provides a sane
| default location for this type of information, allowing packages
| to have a conventional place to find your various credentials.
|
*/
'mailgun' => array(
'domain' => '',
'secret' => '',
),
'mailgun' => [
'domain' => '',
'secret' => '',
],
'mandrill' => array(
'secret' => '',
),
'mandrill' => [
'secret' => '',
],
'stripe' => array(
'model' => 'User',
'secret' => '',
),
'stripe' => [
'model' => 'User',
'secret' => '',
],
);
];