alangasar / dm
Symfony var-dumper wrapper for Drupal 8
v1.6
2025-12-10 05:13 UTC
This package is auto-updated.
Last update: 2026-03-10 05:37:38 UTC
README
Examples
<?php $node = Node::load(1); #Print $node dump to screen dm($node); #Print $node dump to system watchdog wdm($node); function wdm($object, $type = 'wdm'){ \Drupal::logger($type)->notice('<pre><code>' . print_r($object, TRUE) . '</code></pre>' ); }
Or in twig file:
{{ dm(node) }}
Install
composer require alangasar/dm