Skip to content

Commit

Permalink
Release 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Feb 24, 2020
1 parent 55cf61e commit 3eabfd5
Show file tree
Hide file tree
Showing 49 changed files with 1,026 additions and 1,596 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,5 @@ nb-configuration.xml
.vscode/

/results/
/phpunit*.xml
/phpunit*.xml
/.phpunit.*.cache
1 change: 0 additions & 1 deletion app/Config/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,5 +265,4 @@ class App extends BaseConfig
| - http://www.w3.org/TR/CSP/
*/
public $CSPEnabled = false;

}
15 changes: 9 additions & 6 deletions app/Config/Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@
*/

Events::on('pre_system', function () {
while (\ob_get_level() > 0)
if (ENVIRONMENT !== 'testing')
{
\ob_end_flush();
}
while (\ob_get_level() > 0)
{
\ob_end_flush();
}

\ob_start(function ($buffer) {
return $buffer;
});
\ob_start(function ($buffer) {
return $buffer;
});
}

/*
* --------------------------------------------------------------------
Expand Down
62 changes: 62 additions & 0 deletions app/Config/Kint.php
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;
}
Loading

0 comments on commit 3eabfd5

Please sign in to comment.