Files
newznab-tmux/config/tmdb.php
T
DariusIII f244f95b36 Apply fixes from StyleCI
[ci skip] [skip ci]
2018-12-03 13:22:12 +00:00

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'),
],
],
];