| Package Data | |
|---|---|
| Maintainer Username: | marcreichel | 
| Maintainer Contact: | mail@marcreichel.de (Marc Reichel) | 
| Package Create Date: | 2019-01-03 | 
| Package Last Update: | 2025-06-05 | 
| Home Page: | https://marcreichel.dev/docs/igdb-laravel | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-25 03:00:11 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 112,857 | 
| Monthly Downloads: | 4,598 | 
| Daily Downloads: | 69 | 
| Total Stars: | 114 | 
| Total Watchers: | 5 | 
| Total Forks: | 22 | 
| Total Open Issues: | 4 | 

You can install this package via composer using:
composer require marcreichel/igdb-laravel
The package will automatically register its service provider.
To publish the config file to config/igdb.php run:
php artisan igdb:publish
This is the default content of the config file:
return [
    /*
     * These are the credentials you got from https://dev.twitch.tv/console/apps
     */
    'credentials' => [
        'client_id' => env('TWITCH_CLIENT_ID', ''),
        'client_secret' => env('TWITCH_CLIENT_SECRET', ''),
    ],
    /*
     * This package caches queries automatically (for 1 hour per default).
     * Here you can set how long each query should be cached (in seconds).
     *
     * To turn cache off set this value to 0
     */
    'cache_lifetime' => env('IGDB_CACHE_LIFETIME', 3600),
    /*
     * Path where the webhooks should be handled.
     */
    'webhook_path' => 'igdb-webhook/handle',
    /*
     * The webhook secret.
     *
     * This needs to be a string of your choice in order to use the webhook
     * functionality.
     */
    'webhook_secret' => env('IGDB_WEBHOOK_SECRET', null),
];
You will find the full documentation on the dedicated documentation site.
Run the tests with:
composer test
Pull requests are welcome :)