File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,17 @@ configuration is optimized for two main purposes.
13
13
* Be as similar as possible as the production environment to avoid problems
14
14
when deploying the project.
15
15
16
+ Using Interactive Debug Tools
17
+ -----------------------------
18
+
19
+ Interactive debug tools allow you to walk through the code step by step,
20
+ making it easier to indentify which step is causing problems. Symfony works
21
+ with any PHP debug environment, among them:
22
+
23
+ * Xdebug _, the most well-known PHP debugger;
24
+ * PsySH _, a PHP REPL _ (Read-eval-print loop) debugger. Use the
25
+ FidryPsyshBundle _ for a dedicated Symfony integration of PsySH.
26
+
16
27
Disabling the Bootstrap File and Class Caching
17
28
----------------------------------------------
18
29
@@ -118,3 +129,8 @@ You can also dump values from inside templates:
118
129
119
130
{# dumps the variable to the web debug toolbar to not modify the template #}
120
131
{% dump myVar %}
132
+
133
+ .. _Xdebug : https://xdebug.org/
134
+ .. _PsySH : http://psysh.org/
135
+ .. _REPL : https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop
136
+ .. _FidryPsyshBundle : https://github.com/theofidry/PsyshBundle
You can’t perform that action at this time.
0 commit comments