mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Use marcreichel/igdb-laravel for igdb lookups
This commit is contained in:
@@ -164,7 +164,6 @@ return [
|
||||
App\Providers\TelescopeServiceProvider::class,
|
||||
Jrean\UserVerification\UserVerificationServiceProvider::class,
|
||||
App\Providers\RouteServiceProvider::class,
|
||||
Messerli90\IGDB\IGDBServiceProvider::class,
|
||||
App\Providers\UserServiceProvider::class,
|
||||
|
||||
],
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
<?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,
|
||||
];
|
||||
Reference in New Issue
Block a user