mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 00:01:21 +00:00
Replace tmdb-php/api with tmdb-php/laravel package
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package php-tmdb\laravel
|
||||
* @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')
|
||||
]
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user