rdumpdev/laravel-rdump

A simple Laravel package for debugging with a custom dump utility.

1.2 2024-09-06 23:48 UTC

This package is auto-updated.

Last update: 2025-01-08 20:48:12 UTC


README

A simple Laravel package for debugging and tracing remotely on www.rdump.dev

Installation

You can install the package via composer:

composer require rdumpdev/laravel-rdump

Configuration

You need a valid project key from www.rdump.dev Add this to your .env file:

RDUMP_PRIVATE_KEY="Your project key here"

Usage

You can pass any data in the second argument, except methods or classes.

Use the following code snippet in your application:

rdump('user_registered', [
    'name' => 'John'
])