From f10176656b198af4d2a23c26ecd808e6bfa2c2e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Faber=20Andr=C3=A9s=20Vergara=20Holgu=C3=ADn?= Date: Tue, 24 Feb 2015 16:00:29 -0500 Subject: [PATCH 1/2] Fix load library example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 82cab2e..e231434 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A modification to the [Kint debugging library](https://github.com/raveren/kint) Made a few modifications to allow easy use in CodeIgniter. Simply load the library: ```php -$this->load->library('kint'); +$this->load->library('Kint/Kint'); ``` And then use Kint as normal: @@ -22,4 +22,4 @@ $this->kint->dump($some_var); ``` -Have fun debugging. \ No newline at end of file +Have fun debugging. From 0c55317917246ec4c58560844dacd9af5d2cc619 Mon Sep 17 00:00:00 2001 From: Faber Vergara Date: Sat, 4 Apr 2015 22:58:13 -0500 Subject: [PATCH 2/2] installation path added --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e231434..3a49a4b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ codeigniter-kint A modification to the [Kint debugging library](https://github.com/raveren/kint) for use in CodeIgniter. Currently based on v32. -Made a few modifications to allow easy use in CodeIgniter. Simply load the library: +Made a few modifications to allow easy use in CodeIgniter. Unzip this folder in application folder, and then simply load the library: ```php $this->load->library('Kint/Kint');