mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-24 01:57:51 -05:00
* Replace tabs with spaces Signed-off-by: objecttothis <objecttothis@gmail.com> * Composer package bumps - Bump codeigniter4/framework to 4.6.0 - Bump codeIgniter/coding-standard to ^1.8 - Bump codeigniter4/devkit to ^1.3 - Updated framework files required by CI4.6.0 - Removed Deprecated variables - Added new file in the repo from framework Signed-off-by: objecttothis <objecttothis@gmail.com> * Reflect PHP 8.4 support Updates for PHP 8.4 support introduced with the upgrade to CodeIgniter 4.6.x * Update INSTALL.md - Revert PHP 8.4 support for now. - Removed extra space before comma --------- Signed-off-by: objecttothis <objecttothis@gmail.com> Co-authored-by: BudsieBuds <bas_hubers@hotmail.com>
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;
|
|
}
|