• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Exception/H03-May-2022-726451

FatalErrorHandler/H03-May-2022-380225

BufferingLogger.phpH A D24-Sep-20211 KiB4518

CHANGELOG.mdH A D24-Sep-20211.8 KiB8457

Debug.phpH A D24-Sep-20212 KiB6531

DebugClassLoader.phpH A D24-Sep-202120.6 KiB539387

ErrorHandler.phpH A D24-Sep-202126.3 KiB710487

ExceptionHandler.phpH A D24-Sep-202128.2 KiB471313

LICENSEH A D24-Sep-20211 KiB2016

README.mdH A D24-Sep-2021732 3121

composer.jsonH A D24-Sep-2021846 3635

README.md

1Debug Component
2===============
3
4**CAUTION**: this component is deprecated since Symfony 4.4. Instead, use the
5[ErrorHandler component](https://github.com/symfony/symfony/tree/master/src/Symfony/Component/ErrorHandler).
6
7-----
8
9The Debug component provides tools to ease debugging PHP code.
10
11Getting Started
12---------------
13
14```
15$ composer require symfony/debug
16```
17
18```php
19use Symfony\Component\Debug\Debug;
20
21Debug::enable();
22```
23
24Resources
25---------
26
27 * [Contributing](https://symfony.com/doc/current/contributing/index.html)
28 * [Report issues](https://github.com/symfony/symfony/issues) and
29   [send Pull Requests](https://github.com/symfony/symfony/pulls)
30   in the [main Symfony repository](https://github.com/symfony/symfony)
31