Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 8, 2024 via composer

symfony/var-dumper v2.8.43

Symfony mechanism for exploring and dumping PHP variables
Package summary
Share
0
issues
1
license
2
MIT
Package created
26 Sep 2014
Version published
4 Jul 2018
Maintainers
1
Total deps
2
Direct deps
1
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
symfony/polyfill-mbstring@v1.29.0
symfony/var-dumper@v2.8.43
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

1
All Dependencies CSV
β“˜ This is a list of symfony/var-dumper 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
symfony/polyfill-mbstringv1.29.0-MIT
prod

Visualizations

Frequently Asked Questions

What does symfony/var-dumper do?

Symfony/var-dumper is a component that provides mechanisms for traversing any arbitrary PHP variable. This versatile development tool, as an alternative to the existing var_dump() function, offers a more advanced dump() function, enhancing debugging and data inspection tasks for developers.

How do you use symfony/var-dumper?

To use symfony/var-dumper, you simply install it using composer with the command composer require --dev symfony/var-dumper. An example of its use might look like this:

require 'vendor/autoload.php';

$someVar = [
    'item1' => 'Hello, world!',
    'item2' => [ 1, 2, 3 ],
];

dump($someVar);

Here, the dump() function is used instead of var_dump(). Running this script will display a nicely formatted and colorized output of the content of the $someVar variable.

Where are the symfony/var-dumper docs?

For detailed use cases and a comprehensive guide for integrating and using symfony/var-dumper in your projects, the official Symfony Documentation is your go-to source. The var-dumper documentation can be accessed at https://symfony.com/doc/current/components/var_dumper/introduction.html. It contains the information you need to start using this tool effectively, from installation to sophisticated uses.