integer-net/magento2-dump-server

N/A

1.1.0 2023-08-29 11:28 UTC

This package is not auto-updated.

Last update: 2024-04-26 10:43:35 UTC


README

This module adds a new command to start a dump-server for use with the symfony var-dumper component to magento 2.

This only works for Http requests to magento. (no cli commands, cronjobs, etc)

Starting the dump server

The dump server can be started using the command bin/magento server:dump. There is also the alias bin/magento dump-server available.

Configuration

The dump-server can be configured in the env.php:

<?php
return [
    // ...
    'dev_dump_server' => [
        'enabled' => true,
        'address' => '127.0.0.1:9912', 
    ],

It is also possible to only specify the address instead of an array:

<?php
return [
    // ...
    'dev_dump_server' => '127.0.0.1:9912',

If no configuration is set, the default is enabled = true and address = 127.0.0.1:9912.