]> BookStack Code Mirror - bookstack/blob - config/services.php
Change application namespace to BookStack
[bookstack] / config / services.php
1 <?php
2
3 return [
4
5     /*
6     |--------------------------------------------------------------------------
7     | Third Party Services
8     |--------------------------------------------------------------------------
9     |
10     | This file is for storing the credentials for third party services such
11     | as Stripe, Mailgun, Mandrill, and others. This file provides a sane
12     | default location for this type of information, allowing packages
13     | to have a conventional place to find your various credentials.
14     |
15     */
16
17     'mailgun'  => [
18         'domain' => '',
19         'secret' => '',
20     ],
21
22     'mandrill' => [
23         'secret' => '',
24     ],
25
26     'ses'      => [
27         'key'    => '',
28         'secret' => '',
29         'region' => 'us-east-1',
30     ],
31
32     'stripe'   => [
33         'model'  => BookStack\User::class,
34         'key'    => '',
35         'secret' => '',
36     ],
37
38     'github'   => [
39         'client_id'     => env('GITHUB_APP_ID', false),
40         'client_secret' => env('GITHUB_APP_SECRET', false),
41         'redirect'      => env('APP_URL') . '/login/service/github/callback',
42     ],
43
44     'google'   => [
45         'client_id'     => env('GOOGLE_APP_ID', false),
46         'client_secret' => env('GOOGLE_APP_SECRET', false),
47         'redirect'      => env('APP_URL') . '/login/service/google/callback',
48     ],
49
50 ];