mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
f244f95b36
[ci skip] [skip ci]
40 lines
832 B
PHP
40 lines
832 B
PHP
<?php
|
|
/**
|
|
* @author Mark Redeman <markredeman@gmail.com>
|
|
* @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'),
|
|
],
|
|
],
|
|
];
|