PHPackages                             khepin/rr-dumpserver - 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. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. khepin/rr-dumpserver

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

khepin/rr-dumpserver
====================

A dump server plugin for roadrunner PHP app server

v0.1.0(5y ago)113MITPHP

Since Jan 29Pushed 5y ago1 watchersCompare

[ Source](https://github.com/khepin/rr-dumpserver)[ Packagist](https://packagist.org/packages/khepin/rr-dumpserver)[ RSS](/packages/khepin-rr-dumpserver/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

rr-dumpserver
=============

[](#rr-dumpserver)

A debugger / dumpserver for Roadrunner.

When I started working with Roadrunner for PHP, I found the debugging experience somewhat frustrating. I've grown used to Laravel's `dump` and `dd` functions and wanted something similar for Roadrunner development.

This is an attempat at that. It works as a plugin / Service for Roadrunner that you enable in your dev environment. It serves a UI on a given port where you can see the results of your dump calls.

Those calls are made using the global `rrdump` helper function.

Sample
------

[](#sample)

Note while the gif mentions gRPC, it's not the case that this is limited to gRPC.

[![debug-gif](https://raw.githubusercontent.com/khepin/rr-dumpserver/main/debugger.gif)](https://raw.githubusercontent.com/khepin/rr-dumpserver/main/debugger.gif)

Setup
-----

[](#setup)

### Appserver

[](#appserver)

In your `main.go`:

```
package main

import (
    // ...
	"github.com/spiral/roadrunner/service/rpc"
	dumpserver "github.com/khepin/rr-dumpserver"
)

func main() {
    // Other service registration
    // ...
	rr.Container.Register(rpc.ID, &rpc.Service{}) // rpc is required
	rr.Container.Register(dumpserver.ID, &dumpserver.Service{})

	rr.Execute()
}
```

In your `.rr.yaml`

```
rpc:
  enable: true
  listen: tcp://127.0.0.1:6001

dumpserver:
  enable: true
  HistorySize: 2000 # How many dumps to keep in memory
  address: :8089
```

### PHP Code

[](#php-code)

Install the package via composer: `composer require khepin/rr-dumpserver`

Initialize the dumper with your RPC parameters:

```
use Khepin\RRDumpServer\RRDumper;
use Spiral\Goridge\RPC;
use Spiral\Goridge\SocketRelay;

$relay = new SocketRelay("127.0.0.1", 6001);
$rpc = new RPC($relay);

RRDumper::setupInstance($rpc);
```

Usage
-----

[](#usage)

From anywhere in your code, just call `rrdump($var)`. Then navigate to `localhost:8089` or whichever address / port you've made the dumpserver available at and review the dumped data in your browser.

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

1929d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/287ba80990994822ffc6808fc979762030bc19ce4095a8fa641b4e7d3dc10627?d=identicon)[Khepin](/maintainers/Khepin)

---

Top Contributors

[![khepin](https://avatars.githubusercontent.com/u/455656?v=4)](https://github.com/khepin "khepin (18 commits)")

### Embed Badge

![Health badge](/badges/khepin-rr-dumpserver/health.svg)

```
[![Health](https://phpackages.com/badges/khepin-rr-dumpserver/health.svg)](https://phpackages.com/packages/khepin-rr-dumpserver)
```

###  Alternatives

[symfony/debug-bundle

Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework

2.4k115.8M824](/packages/symfony-debug-bundle)[php-debugbar/php-debugbar

Debug bar in the browser for php application

4.4k21.3M40](/packages/php-debugbar-php-debugbar)[spatie/laravel-ignition

A beautiful error page for Laravel applications.

566146.7M471](/packages/spatie-laravel-ignition)[spatie/ignition

A beautiful error page for PHP applications.

510147.6M69](/packages/spatie-ignition)[yireo/magento2-whoops

Magento 2 module adding Whoops error handling

102703.5k](/packages/yireo-magento2-whoops)[laradumps/laradumps-core

LaraDumps is a friendly app designed to boost your Laravel / PHP coding and debugging experience.

261.2M13](/packages/laradumps-laradumps-core)

PHPackages © 2026

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