PHPackages                             dorxy/debug\_http - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. dorxy/debug\_http

ActiveCakephp-plugin[HTTP &amp; Networking](/categories/http)

dorxy/debug\_http
=================

CakePHP Debug Kit Http panel

1.3.8(2y ago)950.7k↓33.3%3[1 issues](https://github.com/dorxy/debug_http/issues)MITPHP

Since Dec 12Pushed 2y ago2 watchersCompare

[ Source](https://github.com/dorxy/debug_http)[ Packagist](https://packagist.org/packages/dorxy/debug_http)[ Docs](https://github.com/dorxy/debug_http)[ RSS](/packages/dorxy-debug-http/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (4)Versions (23)Used By (0)

DebugHttp
=========

[](#debughttp)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.txt)[![Build Status](https://camo.githubusercontent.com/bc4eb95a14700c355848bdc4e7c87d68d8f9d41e48ecd9db79733a0a27506da5/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f646f7278792f64656275675f687474702f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/dorxy/debug_http)[![Coverage Status](https://camo.githubusercontent.com/e9a0f26148c9562944640aa28073a7c8b384280991b28962b57d7c11db2ed293/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f646f7278792f64656275675f687474702e7376673f7374796c653d666c61742d737175617265)](https://codecov.io/github/dorxy/debug_http)[![Code Consistency](https://camo.githubusercontent.com/33f8bc483ca890a1bf276aac995580a0c25b6a69b2fe3cd6bdfe6d6134c2315e/68747470733a2f2f737175697a6c6162732e6769746875622e696f2f5048505f436f6465536e69666665722f616e616c797369732f646f7278792f64656275675f687474702f67726164652e737667)](http://squizlabs.github.io/PHP_CodeSniffer/analysis/dorxy/debug_http/)[![Total Downloads](https://camo.githubusercontent.com/c3625c435232eccd4cbd5f1e44aea4ce30d5f541066cdeb2a0120358d015a86d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f646f7278792f64656275675f687474702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dorxy/debug_http)[![Latest Stable Version](https://camo.githubusercontent.com/a5c8db64020bd2a9dc61acdb45c12a5a424221fc70e21c03128d5fbac0681913/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f646f7278792f64656275675f687474702e7376673f7374796c653d666c61742d737175617265266c6162656c3d737461626c65)](https://packagist.org/packages/dorxy/debug_http)[![Latest Unstable Version](https://camo.githubusercontent.com/51ce35b0871b9059e9ddc786b4af0982c8bd766d36e8431adeb2cc9b15730726/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f767072652f646f7278792f64656275675f687474702e7376673f7374796c653d666c61742d737175617265266c6162656c3d756e737461626c65)](https://packagist.org/packages/dorxy/debug_http)

DebugHttp gives the [CakePHP DebugKit](https://github.com/cakephp/debug_kit) plugin integration for HTTP requests using [CakePHP's client](http://book.cakephp.org/3.0/en/core-libraries/httpclient.html).

Requirements
------------

[](#requirements)

The `master` branch has the following requirements:

- CakePHP 3.4.0 or larger
- DebugKit 3.2 or larger

Installation
------------

[](#installation)

- Install the plugin with [Composer](https://getcomposer.org/) from your CakePHP Project's ROOT directory (where the **composer.json** file is located)

```
php composer.phar require dorxy/debug_http "~1.0"
```

*note this is not a dev requirement*

- [Load the plugin](http://book.cakephp.org/3.0/en/plugins.html#loading-a-plugin)

```
Plugin::load('DebugHttp');
Plugin::load('DebugKit', ['bootstrap' => true, 'routes' => true]);
```

- Add the panel to DebugKit

```
Configure::write('DebugKit.panels', ['DebugHttp.ClientCall']);
```

- Set `'debug' => true,` in `config/app.php`.

Usage
-----

[](#usage)

Whenever you wish to have a client request appear in the DebugHttp panel you must use the provided client, e.g.:

```
$http = new \DebugHttp\Network\Http\Client();
$http->get('http://www.google.com');
```

The request and response will automatically appear in the **Client calls** panel, as well as their timing in the Timer panel.

Screenshots
-----------

[](#screenshots)

[![alt text](https://github.com/dorxy/debug_http/raw/master/example-images/example-calls.png "Calls panel")](https://github.com/dorxy/debug_http/raw/master/example-images/example-calls.png)

[![alt text](https://github.com/dorxy/debug_http/raw/master/example-images/example-expanded.png "Call opened in panel")](https://github.com/dorxy/debug_http/raw/master/example-images/example-expanded.png)

[![alt text](https://github.com/dorxy/debug_http/raw/master/example-images/example-timer.png "Requests incorporated in Timer panel")](https://github.com/dorxy/debug_http/raw/master/example-images/example-timer.png)

Reporting Issues
----------------

[](#reporting-issues)

If you have a problem with DebugHttp or wish to see other features please open an issue on [GitHub](https://github.com/dorxy/debug_http/issues).

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity36

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 70.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~148 days

Recently: every ~359 days

Total

20

Last Release

985d ago

Major Versions

1.3.3 → 3.x-dev2019-10-01

### Community

Maintainers

![](https://www.gravatar.com/avatar/af76eb06cb91acb862fba13ea7f6fb06d6bb0af602334005a68cbbb5ce3c10fd?d=identicon)[dorxy](/maintainers/dorxy)

---

Top Contributors

[![dorxy](https://avatars.githubusercontent.com/u/9029712?v=4)](https://github.com/dorxy "dorxy (34 commits)")[![nickygerritsen](https://avatars.githubusercontent.com/u/550145?v=4)](https://github.com/nickygerritsen "nickygerritsen (7 commits)")[![letstalk-nl](https://avatars.githubusercontent.com/u/9513230?v=4)](https://github.com/letstalk-nl "letstalk-nl (5 commits)")[![letstalk-gieljan](https://avatars.githubusercontent.com/u/55544631?v=4)](https://github.com/letstalk-gieljan "letstalk-gieljan (1 commits)")[![Oxicode](https://avatars.githubusercontent.com/u/1320709?v=4)](https://github.com/Oxicode "Oxicode (1 commits)")

---

Tags

httpclientdebugcakephp

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/dorxy-debug-http/health.svg)

```
[![Health](https://phpackages.com/badges/dorxy-debug-http/health.svg)](https://phpackages.com/packages/dorxy-debug-http)
```

###  Alternatives

[m6web/guzzle-http-bundle

Symfony bundle on top of Guzzle

17511.5k2](/packages/m6web-guzzle-http-bundle)[swoole/etcd-client

Grpc PHP Client base on Swoole Http2 Coroutine

1973.2k1](/packages/swoole-etcd-client)[phpro/http-tools

HTTP tools for developing more consistent HTTP implementations.

28137.8k](/packages/phpro-http-tools)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
