{"id":13476077,"url":"https://github.com/cakephp/debug_kit","last_synced_at":"2025-05-14T02:08:37.069Z","repository":{"id":37359236,"uuid":"423066","full_name":"cakephp/debug_kit","owner":"cakephp","description":"Debug Toolbar for CakePHP applications.","archived":false,"fork":false,"pushed_at":"2025-04-19T22:56:31.000Z","size":6402,"stargazers_count":847,"open_issues_count":2,"forks_count":570,"subscribers_count":77,"default_branch":"5.x","last_synced_at":"2025-04-19T23:26:57.048Z","etag":null,"topics":["cakephp","cakephp-plugin","debugbar","debugging","php"],"latest_commit_sha":null,"homepage":"http://cakephp.org","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cakephp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2009-12-12T03:24:12.000Z","updated_at":"2025-04-19T22:56:34.000Z","dependencies_parsed_at":"2024-01-12T00:46:46.046Z","dependency_job_id":"1c860a90-9637-49e3-9694-73def8f91b29","html_url":"https://github.com/cakephp/debug_kit","commit_stats":{"total_commits":1861,"total_committers":176,"mean_commits":"10.573863636363637","dds":0.4755507791509941,"last_synced_commit":"facde4d2d75adb7293a4e35c54243b0699d2d49b"},"previous_names":[],"tags_count":163,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cakephp%2Fdebug_kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cakephp%2Fdebug_kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cakephp%2Fdebug_kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cakephp%2Fdebug_kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cakephp","download_url":"https://codeload.github.com/cakephp/debug_kit/tar.gz/refs/heads/5.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254053178,"owners_count":22006717,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cakephp","cakephp-plugin","debugbar","debugging","php"],"created_at":"2024-07-31T16:01:26.370Z","updated_at":"2025-05-14T02:08:32.057Z","avatar_url":"https://github.com/cakephp.png","language":"PHP","readme":"# CakePHP DebugKit\n![Build Status](https://github.com/cakephp/debug_kit/actions/workflows/ci.yml/badge.svg?branch=master)\n[![Coverage Status](https://img.shields.io/codecov/c/github/cakephp/debug_kit.svg?style=flat-square)](https://codecov.io/github/cakephp/debug_kit)\n[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.txt)\n[![Total Downloads](https://img.shields.io/packagist/dt/cakephp/cakephp.svg?style=flat-square)](https://packagist.org/packages/cakephp/debug_kit)\n\nDebugKit provides a debugging toolbar and enhanced debugging tools for CakePHP\napplications. It lets you quickly see configuration data, log messages, SQL\nqueries, and timing data for your application.\n\n:warning: DebugKit is only intended for use in single-user local development\nenvironments. You should avoid using DebugKit in shared development\nenvironments, staging environments, or any environment where you need to keep\nconfiguration data and environment variables hidden. :warning:\n\n## Requirements\n\n* SQLite (pdo_sqlite) or another database driver that CakePHP can talk to. By\n  default DebugKit will use SQLite, if you need to use a different database see the Database Configuration section in the documentation linked below.\n\nFor details and older versions see [version map](https://github.com/cakephp/debug_kit/wiki#version-map).\n\n## Installation\n\n* Install the plugin with [Composer](https://getcomposer.org/) from your CakePHP Project's ROOT directory (where the **composer.json** file is located)\n```sh\nphp composer.phar require --dev cakephp/debug_kit:\"^5.0\"\n```\n\n* [Load the plugin](https://book.cakephp.org/5/en/plugins.html#loading-a-plugin)\n```php\n// src/Application.php\n$this-\u003eaddPlugin('DebugKit');\n```\n* Set `'debug' =\u003e true,` in `config/app.php`.\n\n## Is DebugKit not working?\n\nIf you don't see a CakePHP icon on the bottom right of your page DebugKit is not be\nworking correctly. Some common problems are:\n\n1. Your PHP environment doesn't have SQLite installed. Check your application\n   logs to confirm if this happening. You can either configure DebugKit to use\n   a different database, or install the PDO SQLite 3 extension.\n2. Your hostname needs to be added to the `DebugKit.safeTld`. If your local\n   domain isn't a known development environment name, DebugKit will disable\n   itself to protect a potentially non-development environment.\n3. If you are using the [Authorization Plugin](https://github.com/cakephp/authorization)\n   you need to set `DebugKit.ignoreAuthorization` to `true` in your config.\n\n## Reporting Issues\n\nIf you have a problem with DebugKit please open an issue on [GitHub](https://github.com/cakephp/debug_kit/issues).\n\n## Contributing\n\nIf you'd like to contribute to DebugKit, check out the\n[roadmap](https://github.com/cakephp/debug_kit/wiki/roadmap) for any\nplanned features. You can [fork](https://help.github.com/articles/fork-a-repo)\nthe project, add features, and send [pull\nrequests](https://help.github.com/articles/using-pull-requests) or open\n[issues](https://github.com/cakephp/debug_kit/issues).\n\n## Documentation\n\nDocumentation for DebugKit can be found in the\n[CakePHP documentation](https://book.cakephp.org/debugkit/5/en/index.html).\n\n## Panels\nPanels by other plugins:\n- `L10n` by [Setup plugin](https://github.com/dereuromark/cakephp-setup) to show current localization for Date, DateTime, Time objects/values.\n","funding_links":[],"categories":["PHP","Debugging"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcakephp%2Fdebug_kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcakephp%2Fdebug_kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcakephp%2Fdebug_kit/lists"}