= 0); \define('KINT_PHP73', \version_compare(PHP_VERSION, '7.3') >= 0); \define('KINT_PHP74', \version_compare(PHP_VERSION, '7.4') >= 0); \define('KINT_PHP80', \version_compare(PHP_VERSION, '8.0') >= 0); \define('KINT_PHP81', \version_compare(PHP_VERSION, '8.1') >= 0); \define('KINT_PHP82', \version_compare(PHP_VERSION, '8.2') >= 0); \define('KINT_PHP83', \version_compare(PHP_VERSION, '8.3') >= 0); \define('KINT_PHP84', \version_compare(PHP_VERSION, '8.4') >= 0); // Dynamic default settings if (false !== \ini_get('xdebug.file_link_format')) { Kint::$file_link_format = \ini_get('xdebug.file_link_format'); } if (isset($_SERVER['DOCUMENT_ROOT'])) { Kint::$app_root_dirs = [ $_SERVER['DOCUMENT_ROOT'] => '', ]; // Suppressed for unreadable document roots (related to open_basedir) if (false !== @\realpath($_SERVER['DOCUMENT_ROOT'])) { Kint::$app_root_dirs[\realpath($_SERVER['DOCUMENT_ROOT'])] = ''; } } Utils::composerSkipFlags(); if ((!\defined('KINT_SKIP_FACADE') || !KINT_SKIP_FACADE) && !\class_exists('Kint')) { \class_alias(Kint::class, 'Kint'); } if (!\defined('KINT_SKIP_HELPERS') || !KINT_SKIP_HELPERS) { require_once __DIR__.'/init_helpers.php'; }