Download the PHP package debugd/debugd-laravel without Composer

On this page you can find all versions of the php package debugd/debugd-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package debugd-laravel

debugd for Laravel

Packagist Version

Zero-instrumentation request tracing for Laravel — the passive collector for the debugd server.

debugd live UI

It quietly ships each request's queries, logs, timings, exceptions, and your own dumps to a local debugd server, which serves a live UI. When DEBUGD_HOST is unset, the package does literally nothing — no listeners, zero overhead — so it's safe to leave installed.

This is the read-only split of ShahramMebashar/debugd (the debugd-laravel/ directory). Open issues and PRs there.

Requirements

Install

Start the debugd server (./bin/debugd --open), hit any page that does some work, and the trace shows up instantly. Remove DEBUGD_HOST and the package goes inert again.

The service provider is auto-discovered — no manual registration needed.

The debugd() helper

Leave these in your code. They're a no-op in production (when DEBUGD_HOST is unset), and bench() still returns its result either way.

Configuration

Env var Default What
DEBUGD_HOST (unset) debugd server URL. Unset = package fully disabled.
DEBUGD_CAPTURE_BINDINGS false Ship raw query bindings. Off by default — no values leave your app otherwise.

How it works

The package hangs off DB::listen, a Monolog handler, and the exception reporter, buffers everything per-request, and POSTs it from terminate() after the response is already sent — with tight timeouts and every failure swallowed, so tracing can't slow down or break a request. It's Octane- and FrankenPHP-safe (state is per-request, tested).

Not doing (on purpose)

No persistence, no production telemetry, no sampling, no auth. It's a local dev tool. The frozen wire format lives in PROTOCOL.md.

License

MIT.


All versions of debugd-laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/support Version ^11.0 || ^12.0 || ^13.0
guzzlehttp/guzzle Version ^7.8
symfony/uid Version ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package debugd/debugd-laravel contains the following files

Loading the files please wait ...