buzzingpixel / twig-dumper
A Twig Dumper that uses the Symfony VarDumper component
Installs: 1 883
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 2
Requires
- php: >=7.2
- symfony/var-dumper: ^4.3|^5.0|^6.0
- twig/twig: ^2.8|^3.0
Requires (Dev)
- codedungeon/phpunit-result-printer: ^0.26.2
- doctrine/coding-standard: ^6.0
- friendsofphp/php-cs-fixer: ^2.15
- phpstan/phpstan: ^0.11.12
- phpstan/phpstan-deprecation-rules: ^0.11.2
- phpunit/phpunit: ^8.3
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ^3.4
- thecodingmachine/phpstan-safe-rule: ^0.1.4
- vimeo/psalm: ^3.4
This package is auto-updated.
Last update: 2024-11-06 20:55:08 UTC
README
A Twig Dumper that uses the Symfony VarDumper component.
Installation
composer require --dev buzzingpixel/twig-dumper
When instantiating your Twig instance, add BuzzingPixel\TwigDumper\TwigDumper
extension to Twig via the addExtension()
method. Like so:
<?php declare(strict_types=1); use Twig\Environment; use Twig\Loader\FilesystemLoader; use BuzzingPixel\TwigDumper\TwigDumper; $twig = new Environment(new FilesystemLoader('/path/to/templates'), [ 'debug' => true, 'cache' => '/path/to/cache', 'strict_variables' => true, ]); $twig->addExtension(new TwigDumper());
Usage
Node that Twig must be in debug mode in order for this extension to work.
{# Dump variables or other values #} {{ dump(myVar, anotherVar, 123, 'etc.') }} {# Dump the twig context #} {{ dump() }}
License
Copyright 2019 BuzzingPixel, LLC
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.