You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Kint.php 1.5KB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace Config;
  3. use CodeIgniter\Config\BaseConfig;
  4. use Kint\Renderer\Renderer;
  5. /**
  6. * --------------------------------------------------------------------------
  7. * Kint
  8. * --------------------------------------------------------------------------
  9. *
  10. * We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options
  11. * that you can set to customize how Kint works for you.
  12. *
  13. * @see https://kint-php.github.io/kint/ for details on these settings.
  14. */
  15. class Kint extends BaseConfig
  16. {
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Global Settings
  20. |--------------------------------------------------------------------------
  21. */
  22. public $plugins;
  23. public $maxDepth = 6;
  24. public $displayCalledFrom = true;
  25. public $expanded = false;
  26. /*
  27. |--------------------------------------------------------------------------
  28. | RichRenderer Settings
  29. |--------------------------------------------------------------------------
  30. */
  31. public $richTheme = 'aante-light.css';
  32. public $richFolder = false;
  33. public $richSort = Renderer::SORT_FULL;
  34. public $richObjectPlugins;
  35. public $richTabPlugins;
  36. /*
  37. |--------------------------------------------------------------------------
  38. | CLI Settings
  39. |--------------------------------------------------------------------------
  40. */
  41. public $cliColors = true;
  42. public $cliForceUTF8 = false;
  43. public $cliDetectWidth = true;
  44. public $cliMinWidth = 40;
  45. }