- Full gg.deals-style UI: deal feed with filters, game pages with price history charts, rankings, vouchers, news, prepaids, subscriptions, bundles, franchises, wishlist, API docs - Real data crawlers: * gg:crawl (Steam Store API + GOG Catalog + Epic free games) * gg:catalog (252K game slugs from gg.deals sitemaps) * gg:ggdeals (per-game prices via FlareSolverr session, JSON-LD parsing) * gg:seed / gg:crawl-covers (demo seed + Steam CDN cover art) - 24/7 self-updating scheduler (scripts/scheduler_loop.php, lockfile-protected) - Tailwind v4 dark/light theme, Alpine.js, Chart.js
64 lines
1.8 KiB
PHP
64 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use Kint\Parser\ConstructablePluginInterface;
|
|
use Kint\Renderer\Rich\TabPluginInterface;
|
|
use Kint\Renderer\Rich\ValuePluginInterface;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Kint
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options
|
|
* that you can set to customize how Kint works for you.
|
|
*
|
|
* @see https://kint-php.github.io/kint/ for details on these settings.
|
|
*/
|
|
class Kint
|
|
{
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Global Settings
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
/**
|
|
* @var list<class-string<ConstructablePluginInterface>|ConstructablePluginInterface>|null
|
|
*/
|
|
public $plugins;
|
|
|
|
public int $maxDepth = 6;
|
|
public bool $displayCalledFrom = true;
|
|
public bool $expanded = false;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| RichRenderer Settings
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
public string $richTheme = 'aante-light.css';
|
|
public bool $richFolder = false;
|
|
|
|
/**
|
|
* @var array<string, class-string<ValuePluginInterface>>|null
|
|
*/
|
|
public $richObjectPlugins;
|
|
|
|
/**
|
|
* @var array<string, class-string<TabPluginInterface>>|null
|
|
*/
|
|
public $richTabPlugins;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| CLI Settings
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
public bool $cliColors = true;
|
|
public bool $cliForceUTF8 = false;
|
|
public bool $cliDetectWidth = true;
|
|
public int $cliMinWidth = 40;
|
|
}
|