BookStack/config/services.php

51 lines
1.3 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
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.
|
*/
2015-09-04 16:16:58 +00:00
'mailgun' => [
2015-07-12 19:01:42 +00:00
'domain' => '',
'secret' => '',
],
'mandrill' => [
'secret' => '',
],
2015-09-04 16:16:58 +00:00
'ses' => [
2015-07-12 19:01:42 +00:00
'key' => '',
'secret' => '',
'region' => 'us-east-1',
],
2015-09-04 16:16:58 +00:00
'stripe' => [
'model' => BookStack\User::class,
2015-07-12 19:01:42 +00:00
'key' => '',
'secret' => '',
],
2015-09-04 16:16:58 +00:00
'github' => [
'client_id' => env('GITHUB_APP_ID', false),
'client_secret' => env('GITHUB_APP_SECRET', false),
'redirect' => env('APP_URL') . '/login/service/github/callback',
],
'google' => [
'client_id' => env('GOOGLE_APP_ID', false),
'client_secret' => env('GOOGLE_APP_SECRET', false),
'redirect' => env('APP_URL') . '/login/service/google/callback',
],
2015-07-12 19:01:42 +00:00
];