Kint.php 1.4 KB

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