forked from php-tmdb/laravel
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,12 @@ | ||
<?php | ||
/** | ||
* @package php-tmdb\laravel | ||
* @author Mark Redeman <markredeman@gmail.com> | ||
* @copyright (c) 2014, Mark Redeman | ||
*/ | ||
return [ | ||
/* | ||
* Api key | ||
*/ | ||
'api_key' => '', | ||
|
||
/** | ||
* Client options | ||
*/ | ||
'options' => [ | ||
/** | ||
* Use https | ||
*/ | ||
'secure' => true, | ||
|
||
/* | ||
* Cache | ||
*/ | ||
'cache' => [ | ||
'enabled' => true, | ||
// Keep the path empty or remove it entirely to default to storage/tmdb | ||
'path' => storage_path('tmdb') | ||
], | ||
|
||
/* | ||
* Log | ||
*/ | ||
'log' => [ | ||
'enabled' => true, | ||
// Keep the path empty or remove it entirely to default to storage/logs/tmdb.log | ||
'path' => storage_path('logs/tmdb.log') | ||
] | ||
], | ||
]; | ||
<?php | ||
/** | ||
* @package php-tmdb\laravel | ||
* @author Mark Redeman <markredeman@gmail.com> | ||
* @copyright (c) 2014, Mark Redeman | ||
*/ | ||
return [ | ||
/* | ||
* Api key | ||
*/ | ||
'api_key' => '', | ||
]; |