2024-08-24 23:08:42 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Third Party Services
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
|
|
|
| location for this type of information, allowing packages to have
|
|
|
|
| a conventional file to locate the various service credentials.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'mailgun' => [
|
|
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
|
|
'secret' => env('MAILGUN_SECRET'),
|
|
|
|
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
|
|
|
'scheme' => 'https',
|
|
|
|
],
|
|
|
|
|
|
|
|
'postmark' => [
|
|
|
|
'token' => env('POSTMARK_TOKEN'),
|
|
|
|
],
|
|
|
|
|
|
|
|
'ses' => [
|
|
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
|
|
|
],
|
|
|
|
'tmdb' => [
|
|
|
|
'key' => env('TMDB_KEY', 'a07e22bc18f5cb106bfe4cc1f83ad8ed'),
|
2024-09-06 03:54:44 +03:00
|
|
|
'use_cache' => env('TMDB_USE_CACHE', false),
|
2024-08-24 23:08:42 +03:00
|
|
|
'cache_ttl' => env('TMDB_CACHE_TTL', 3600*24),
|
|
|
|
],
|
|
|
|
'api' => [
|
2024-09-25 07:40:46 +03:00
|
|
|
'api_url' => env('API_URL', 'https://api.gostream.mobi/'),
|
2024-08-24 23:08:42 +03:00
|
|
|
'per_page' => env('API_PER_PAGE', 48),
|
|
|
|
'use_cache' => env('API_USE_CACHE', true),
|
|
|
|
'cache_ttl' => env('API_CACHE_TTL', 3600*2),
|
|
|
|
'domain_src' => env('API_DOMAIN_SRC', 'soap2day'),
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|