.well-known
app
bootstrap
config
app.php
auth.php
broadcasting.php
cache.php
database.php
dompdf.php
eloquent-sortable.php
filament.php
filesystems.php
mail.php
pdf.php
queue.php
services.php
session.php
snappy.php
tcpdf.php
tinker.php
view.php
database
public
resources
routes
stats
storage
tests
.env.example
.ftpconfig
.gitattributes
.gitignore
.htaccess.bak
artisan
composer.json
composer.lock
composer.lock.bak
package.json
phpunit.xml
readme.md
server.php
webpack.mix.js
39 lines
980 B
PHP
39 lines
980 B
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' => env('MAILGUN_DOMAIN'),
|
|
'secret' => env('MAILGUN_SECRET'),
|
|
],
|
|
|
|
'ses' => [
|
|
'key' => env('SES_KEY'),
|
|
'secret' => env('SES_SECRET'),
|
|
'region' => 'us-east-1',
|
|
],
|
|
|
|
'sparkpost' => [
|
|
'secret' => env('SPARKPOST_SECRET'),
|
|
],
|
|
|
|
'stripe' => [
|
|
'model' => App\User::class,
|
|
'key' => env('STRIPE_KEY'),
|
|
'secret' => env('STRIPE_SECRET'),
|
|
],
|
|
|
|
];
|