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-24 12:57:07 +02:00
..
Exception Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
FatalErrorHandler [Debug] Parse "x not found" errors correctly on php 8. 2020-09-04 00:12:04 +02:00
Resources/ext fixed short array CS in comments 2019-01-16 14:27:11 +01:00
Tests [Debug] Skip a test that was meant for HHVM. 2020-09-09 00:19:14 +02:00
.gitignore
BufferingLogger.php switched array() to [] 2019-01-16 10:39:14 +01:00
CHANGELOG.md Deprecate support for stacked errors 2017-07-06 13:08:05 +03:00
composer.json Remove branch-version (keep them for contracts only) 2020-10-24 12:57:07 +02:00
Debug.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
DebugClassLoader.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
ErrorHandler.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
ExceptionHandler.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
LICENSE Update year in license files 2020-01-01 12:03:25 +01:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md [Translation][Debug] Add installation and minimal example to README 2020-02-03 16:10:40 +01:00

Debug 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