Last updated on May 26th, 2018 at 03:10 pm

This tip helps you enable your CakePHP 3 debug kit follow simple steps to enable your debug kit.

Enable Debug Kit in CakePHP 3

Step 1. Open terminal and run following command, before enter below command go to the root directory of your project 

composer.phar require --dev cakephp/debug_kit "~3.0"

Enable Debug Kit in Cakephp 3

Step 2. After this debug kit is download and runs this command to initialize your plugin

bin/cake plugin load DebugKit

Step 3. Now, most important step. CakePHP 3 debug kit need SQLite extension to run you need to install that if not yet install run following command

sudo apt-get install php-sqlite3

Enable Debug Kit in Cakephp 3

Done 🙂