PHPackages                             bakgul/laravel-dump-server - 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. bakgul/laravel-dump-server

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

bakgul/laravel-dump-server
==========================

A package to make Beyondcode's Laravel Dump Server more practical.

v1.0.9(2y ago)2831MITHTMLPHP ^8.1

Since Feb 9Pushed 2y ago1 watchersCompare

[ Source](https://github.com/bulentAkgul/laravel-dump-server)[ Packagist](https://packagist.org/packages/bakgul/laravel-dump-server)[ RSS](/packages/bakgul-laravel-dump-server/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (9)Dependencies (2)Versions (10)Used By (0)

Laravel Dump Server
===================

[](#laravel-dump-server)

This is a wrapper to Beyondcode's [Laravel Dump Server](https://github.com/beyondcode/laravel-dump-server). It basiacally improves the main package's HTML output functionality by adding the following features:

1. It will remove the previously printed things when a test runs. If you don't want to do that, make `reset_on_each_test` `false` in `config/dump-server.php`.
2. It registers a route which is `/dump-server`, and when you display dumpped file on that route, you will get auto-refresh.
3. Dump file is in dark mode. But, because of a reason that I couldn't figure out, the dark mode will be active after 2 tests runs.

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

[](#installation)

First, you need to install the package.

```
sail composer require bakgul/laravel-dump-server --dev

```

Next, you need to publish config file.

```
sail artisan vendor:publish --provider="Bakgul\LaravelDumpServer\LaravelDumpServerServiceProvider"

```

Configuration
-------------

[](#configuration)

Add the following part to `laravel({ ... })` in `vite.config.js`

```
refresh: [
    "vendor/bakgul/laravel-dump-server/resources/views/dump.html",
    "resources/**",
    "routes/**",
],

```

Modify your `TestCase`

```
use Bakgul\LaravelDumpServer\Concerns\HasDumper;

class TestCase extends BaseTestCase
{
    use HasDumper;

    public function setUp(): void
    {
        parent::setUp();

        $this->resetDumper();
    }
}

```

Usage
-----

[](#usage)

Run Vite:

```
npm run dev

```

Listen to dump server

```
sail artisan dump-server --format=html > vendor/bakgul/laravel-dump-server/resources/dump.html

```

Add `dump($varToDump)` method anywhere you want to display something.

Go to route `/dump-server`.

License
-------

[](#license)

This is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

28

↓

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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

Every ~57 days

Recently: every ~113 days

Total

9

Last Release

732d ago

PHP version history (2 changes)v1.0.0PHP ^8.0.2

v1.0.7PHP ^8.1

### Community

Maintainers

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

---

Top Contributors

[![bulentAkgul](https://avatars.githubusercontent.com/u/12589023?v=4)](https://github.com/bulentAkgul "bulentAkgul (14 commits)")

### Embed Badge

![Health badge](/badges/bakgul-laravel-dump-server/health.svg)

```
[![Health](https://phpackages.com/badges/bakgul-laravel-dump-server/health.svg)](https://phpackages.com/packages/bakgul-laravel-dump-server)
```

###  Alternatives

[symfony/stopwatch

Provides a way to profile code

2.8k387.2M918](/packages/symfony-stopwatch)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k662.9k28](/packages/fruitcake-laravel-debugbar)[spatie/ignition

A beautiful error page for PHP applications.

510147.6M69](/packages/spatie-ignition)[jokkedk/webgrind

Webgrind is a Xdebug profiling web frontend in PHP5. It implements a subset of the features of kcachegrind and installs in seconds and works on all platforms. For quick'n'dirty optimizations it does the job.

3.3k193.0k](/packages/jokkedk-webgrind)[koriym/printo

An object graph visualizer.

1421.8M2](/packages/koriym-printo)[soloterm/dumps

A Laravel command to intercept dumps from your Laravel application.

125285.7k3](/packages/soloterm-dumps)

PHPackages © 2026

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