mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- update CI process to include quality stage (tests + code review) - add captainhook to install git pre-commit & pre-push hooks - remove .devcontainer Dockerfile to use project's docker-compose services: all services can now be started automatically using vscode - update docs/setup-development.md
93 lines
1.8 KiB
PHP
93 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
use Kint\Renderer\Renderer;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* 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 extends BaseConfig
|
|
{
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Global Settings
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
public $plugins;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $maxDepth = 6;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $displayCalledFrom = true;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $expanded = false;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| RichRenderer Settings
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $richTheme = 'aante-light.css';
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $richFolder = false;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $richSort = Renderer::SORT_FULL;
|
|
|
|
public $richObjectPlugins;
|
|
|
|
public $richTabPlugins;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| CLI Settings
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $cliColors = true;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $cliForceUTF8 = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $cliDetectWidth = true;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $cliMinWidth = 40;
|
|
}
|