Use custom TMDB client

This commit is contained in:
DariusIII
2025-12-08 21:49:37 +01:00
parent 0fb778de4e
commit 128cfe688d
8 changed files with 1182 additions and 388 deletions
+20 -3
View File
@@ -1,12 +1,29 @@
<?php
/**
* @author Mark Redeman <markredeman@gmail.com>
* @copyright (c) 2014, Mark Redeman
* TMDB API Configuration
*
* This configuration is used by the custom TmdbClient service.
*/
return [
/*
* Api key
* API key for The Movie Database (TMDB)
* Get your key at: https://www.themoviedb.org/settings/api
*/
'api_key' => env('TMDB_APIKEY', ''),
/*
* Request timeout in seconds
*/
'timeout' => env('TMDB_TIMEOUT', 30),
/*
* Number of retry attempts for failed requests
*/
'retry_times' => env('TMDB_RETRY_TIMES', 3),
/*
* Delay between retry attempts in milliseconds
*/
'retry_delay' => env('TMDB_RETRY_DELAY', 100),
];