1<?php
2
3return [
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, SparkPost 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 'enchant' => [
18 'id' => presence(env('ENCHANT_ID')),
19 ],
20
21 'mailgun' => [
22 'domain' => env('MAILGUN_DOMAIN'),
23 'secret' => env('MAILGUN_SECRET'),
24 ],
25
26 'ses' => [
27 'key' => env('SES_KEY'),
28 'secret' => env('SES_SECRET'),
29 'region' => 'us-east-1',
30 ],
31
32 'sparkpost' => [
33 'secret' => env('SPARKPOST_SECRET'),
34 ],
35
36 'stripe' => [
37 'model' => App\Models\User::class,
38 'key' => env('STRIPE_KEY'),
39 'secret' => env('STRIPE_SECRET'),
40 ],
41
42 'passport' => [
43 'path' => env('PASSPORT_KEY_PATH'),
44 ],
45];