PHP Package: symfony/debug

Symfony Debug component provides tools to make debugging a breeze in PHP applications with detailed error handling, stack traces, and various utilities.

Current Version: 4.4.44
Last Updated: 2022-07-29
PHP Requirement: >=7.1.3
Dependencies:
symfony/var-dumper
php-fig/log
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

The Symfony Debug component enhances the debugging experience for PHP developers by offering a range of features including pretty error pages, improved stack traces, and debugging utilities. With Symfony Debug, developers can easily track and resolve issues, leading to more efficient development workflows.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 4.4.44

Download Download v4.4.44

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/symfony/debug/4.4.44/loader.php';
require_once 'libs/symfony/var-dumper/7.3.0/loader.php';
require_once 'libs/php-fig/log/3.0.2/loader.php';

use Symfony\Component\Debug\Debug;
use Symfony\Component\VarDumper\VarDumper;
use Psr\Log\LoggerInterface;

$obj = new Debug();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.