mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 18:59:09 -04:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Third Party Services
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
| as Stripe, Mailgun, SparkPost 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.
|
|
|
|
|
*/
|
|
|
|
'mailgun' => [
|
|
'domain' => "mail.c-cms.cf",
|
|
'secret' => "2b3638c8d4ec6e6d1f2987a4f02024fb-a5d1a068-beffcbdb",
|
|
],
|
|
|
|
'ses' => [
|
|
'key' => env('SES_KEY'),
|
|
'secret' => env('SES_SECRET'),
|
|
'region' => env('SES_REGION', 'us-east-1'),
|
|
],
|
|
|
|
'sparkpost' => [
|
|
'secret' => env('SPARKPOST_SECRET'),
|
|
],
|
|
|
|
'stripe' => [
|
|
'model' => App\User::class,
|
|
'key' => env('STRIPE_KEY'),
|
|
'secret' => env('STRIPE_SECRET'),
|
|
],
|
|
|
|
'nexmo' => [
|
|
'key' => env('NEXMO_KEY'),
|
|
'secret' => env('NEXMO_SECRET'),
|
|
'sms_from' => '12046743506',
|
|
],
|
|
];
|