-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2564 from codeigniter4/kint3
Updated loader and composer script to use Kint 3.3 for #2373
- Loading branch information
Showing
95 changed files
with
10,555 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -265,5 +265,4 @@ class App extends BaseConfig | |
| - http://www.w3.org/TR/CSP/ | ||
*/ | ||
public $CSPEnabled = false; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php namespace Config; | ||
|
||
use Kint\Renderer\Renderer; | ||
use CodeIgniter\Config\BaseConfig; | ||
|
||
class Kint extends BaseConfig | ||
{ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Kint | ||
|-------------------------------------------------------------------------- | ||
| | ||
| We use Kint's RichRenderer and CLIRenderer. This area contains options | ||
| that you can set to customize how Kint works for you. | ||
| | ||
| For details on these settings, see Kint's docs: | ||
| https://kint-php.github.io/kint/ | ||
| | ||
*/ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Global Settings | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
public $plugins = null; | ||
|
||
public $maxDepth = 6; | ||
|
||
public $displayCalledFrom = true; | ||
|
||
public $expanded = false; | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| RichRenderer Settings | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
public $richTheme = 'aante-light.css'; | ||
|
||
public $richFolder = false; | ||
|
||
public $richSort = Renderer::SORT_FULL; | ||
|
||
public $richObjectPlugins = null; | ||
|
||
public $richTabPlugins = null; | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| CLI Settings | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
public $cliColors = true; | ||
|
||
public $cliForceUTF8 = false; | ||
|
||
public $cliDetectWidth = true; | ||
|
||
public $cliMinWidth = 40; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.