This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Debug
2020-10-28 21:42:29 +01:00
..
Exception Merge branch '3.4' into 4.4 2020-09-02 18:08:58 +02:00
FatalErrorHandler Merge branch '3.4' into 4.4 2020-09-08 13:16:46 +02:00
Tests [Debug] Skip a test that was meant for HHVM. 2020-09-09 00:19:14 +02:00
.gitattributes add missing gitattributes for phpunit-bridge 2020-03-27 17:54:36 +01:00
.gitignore [Debug] fixed minor bugs 2013-04-07 18:19:06 +02:00
BufferingLogger.php Merge branch '3.4' into 4.4 2020-09-02 18:08:58 +02:00
CHANGELOG.md [ErrorHandler] merge and remove the ErrorRenderer component 2019-11-10 18:54:30 +01:00
composer.json Merge branch '3.4' into 4.4 2020-10-24 13:50:19 +02:00
Debug.php Merge branch '3.4' into 4.4 2020-09-02 18:08:58 +02:00
DebugClassLoader.php Use short array deconstruction syntax. 2020-10-28 21:42:29 +01:00
ErrorHandler.php Remove some leftover for HHVM support 2020-09-09 07:20:36 +02:00
ExceptionHandler.php Merge branch '3.4' into 4.4 2020-09-02 18:08:58 +02:00
LICENSE Update year in license files 2020-01-01 12:03:25 +01:00
phpunit.xml.dist [Debug][ErrorHandler] cleanup phpunit.xml.dist files 2020-05-01 18:55:10 +02:00
README.md Merge branch '3.4' into 4.4 2020-02-04 08:40:16 +01:00

Debug Component

CAUTION: this component is deprecated since Symfony 4.4. Instead, use the ErrorHandler component.


The Debug component provides tools to ease debugging PHP code.

Getting Started

$ composer install symfony/debug
use Symfony\Component\Debug\Debug;

Debug::enable();

Resources