source: config/services.php@ 0c07a90

Last change on this file since 0c07a90 was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

initial commit

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[0924b6c]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 'mailgun' => [
18 'domain' => env('MAILGUN_DOMAIN'),
19 'secret' => env('MAILGUN_SECRET'),
20 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
21 ],
22
23 'ses' => [
24 'key' => env('SES_KEY'),
25 'secret' => env('SES_SECRET'),
26 'region' => env('SES_REGION', 'us-east-1'),
27 ],
28
29 'sparkpost' => [
30 'secret' => env('SPARKPOST_SECRET'),
31 ],
32
33 'stripe' => [
34 'model' => App\User::class,
35 'key' => env('STRIPE_KEY'),
36 'secret' => env('STRIPE_SECRET'),
37 'webhook' => [
38 'secret' => env('STRIPE_WEBHOOK_SECRET'),
39 'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
40 ],
41 ],
42
43];
Note: See TracBrowser for help on using the repository browser.