A modification to the Kint debugging library for use in CodeIgniter. Currently based on v32.
Made a few modifications to allow easy use in CodeIgniter. Simply load the library:
$this->load->library('kint');
And then use Kint as normal:
Kint::dump($some_var);
or, you can use it like you're used to in CI:
$this->kint->dump($some_var);
Have fun debugging.