* @copyright (c) 2014, Mark Redeman */ return [ /* * Api key */ 'api_key' => env('TMDB_APIKEY', ''), /* * Client options */ 'options' => [ /* * Use https */ 'secure' => true, /* * Cache */ 'cache' => [ 'enabled' => env('TMDB_CACHE', false), // Keep the path empty or remove it entirely to default to storage/tmdb 'path' => storage_path('tmdb'), ], /* * Log */ 'log' => [ 'enabled' => env('TMDB_LOG', false), // Keep the path empty or remove it entirely to default to storage/logs/tmdb.log 'path' => storage_path('logs/tmdb.log'), ], ], ];