Synced config with laravel/laravel

This commit is contained in:
Graham Campbell 2015-10-30 18:24:15 +00:00
parent c354c7cc3d
commit 4ab6cd5b1b
4 changed files with 13 additions and 8 deletions

View File

@ -201,6 +201,7 @@ return [
'Eloquent' => 'Illuminate\Database\Eloquent\Model',
'Event' => 'Illuminate\Support\Facades\Event',
'File' => 'Illuminate\Support\Facades\File',
'Gate' => 'Illuminate\Support\Facades\Gate',
'Hash' => 'Illuminate\Support\Facades\Hash',
'Input' => 'Illuminate\Support\Facades\Input',
'Inspiring' => 'Illuminate\Foundation\Inspiring',

View File

@ -42,6 +42,9 @@ return [
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
//
],
],
'redis' => [

View File

@ -96,7 +96,8 @@ return [
*/
'failed' => [
'database' => 'mysql', 'table' => 'failed_jobs',
'database' => env('DB_DRIVER', 'sqlite'),
'table' => 'failed_jobs',
],
];

View File

@ -24,24 +24,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' => 'CachetHQ\Cachet\Models\User',
'key' => '',
'secret' => '',
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
],
];