Download the PHP package cakephp/debug_kit without Composer
On this page you can find all versions of the php package cakephp/debug_kit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package debug_kit
CakePHP DebugKit
DebugKit provides a debugging toolbar and enhanced debugging tools for CakePHP applications. It lets you quickly see configuration data, log messages, SQL queries, and timing data for your application.
:warning: DebugKit is only intended for use in single-user local development environments. You should avoid using DebugKit in shared development environments, staging environments, or any environment where you need to keep configuration data and environment variables hidden. :warning:
Requirements
- SQLite (pdo_sqlite) or another database driver that CakePHP can talk to. By default DebugKit will use SQLite, if you need to use a different database see the Database Configuration section in the documentation linked below.
For details and older versions see version map.
Installation
-
Install the plugin with Composer from your CakePHP Project's ROOT directory (where the composer.json file is located)
- Set
'debug' => true,
inconfig/app.php
.
Is DebugKit not working?
If you don't see a CakePHP icon on the bottom right of your page DebugKit is not be working correctly. Some common problems are:
- Your PHP environment doesn't have SQLite installed. Check your application logs to confirm if this happening. You can either configure DebugKit to use a different database, or install the PDO SQLite 3 extension.
- Your hostname needs to be added to the
DebugKit.safeTld
. If your local domain isn't a known development environment name, DebugKit will disable itself to protect a potentially non-development environment. - If you are using the Authorization Plugin
you need to set
DebugKit.ignoreAuthorization
totrue
in your config.
Reporting Issues
If you have a problem with DebugKit please open an issue on GitHub.
Contributing
If you'd like to contribute to DebugKit, check out the roadmap for any planned features. You can fork the project, add features, and send pull requests or open issues.
Documentation
Documentation for DebugKit can be found in the CakePHP documentation.
Panels
Panels by other plugins:
L10n
by Setup plugin to show current localization for Date, DateTime, Time objects/values.
All versions of debug_kit with dependencies
cakephp/cakephp Version ^5.1
composer/composer Version ^2.0
doctrine/sql-formatter Version ^1.1.3