Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 465 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 465 Bytes

codeigniter-kint

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.