mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
32 lines
916 B
PHP
32 lines
916 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* This is the API Token you got from https://api.igdb.com
|
|
*/
|
|
'api_token' => env('IGDB_KEY', ''),
|
|
|
|
/*
|
|
* This package caches queries automatically.
|
|
* Here you can set how long (in seconds) each query should be cached (by
|
|
* default).
|
|
*
|
|
* To turn cache off set this value to 0
|
|
*/
|
|
'cache_lifetime' => env('IGDB_CACHE_LIFETIME', 3600),
|
|
|
|
/*
|
|
* This is the per-page limit for your tier ("Free" by default)
|
|
* Adjust this to 500 if you are on the "Pro" tier or in the Partner Program
|
|
* or to 5000 if you are in the "Enterprise" tier.
|
|
*/
|
|
'per_page_limit' => 50,
|
|
|
|
/*
|
|
* This is the offset limit for your tier ("Free" by default)
|
|
* Adjust this to 5000 if you are on the "Pro" tier or in the Partner Program
|
|
* or to 0 (to turn it off) if you are in the "Enterprise" tier.
|
|
*/
|
|
'offset_limit' => 150,
|
|
];
|