{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %} {% block toolbar %} {% set icon %} Symfony {% endset %} {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': false, 'text': collector.symfonyversion } %} {% if verbose %} {% set text %} {% spaceless %} PHP {{ collector.phpversion }} | xdebug | accel {% endspaceless %} {% endset %} {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': false, 'icon': '' } %} {% endif %} {% set icon %} Environment {% endset %} {% set text %} {% spaceless %} {% if verbose %} {{ collector.appname }} | {{ collector.env }} | {{ collector.debug ? 'debug' : 'no-debug' }} | {% endif %} {% if profiler_url %} {{ collector.token }} {% else %} {{ collector.token }} {% endif %} {% endspaceless %} {% endset %} {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %} {% endblock %} {% block menu %} Configuration Config {% endblock %} {% block panel %}

Project Configuration

Key Value
Symfony version {{ collector.symfonyversion }}
Application name {{ collector.appname }}
Environment {{ collector.env }}
Debug {{ collector.debug ? 'enabled' : 'disabled' }}

PHP configuration

Key Value
PHP version {{ collector.phpversion }}
Xdebug {{ collector.hasxdebug ? 'enabled' : 'disabled' }}
PHP acceleration {{ collector.hasaccelerator ? 'enabled' : 'disabled' }}
XCache {{ collector.hasxcache ? 'enabled' : 'disabled' }}
APC {{ collector.hasapc ? 'enabled' : 'disabled' }}
EAccelerator {{ collector.haseaccelerator ? 'enabled' : 'disabled' }}

Active bundles

{% set bundles = collector.bundles %} {% for name in bundles|keys|sort %} {% endfor %}
Name Path
{{ name }} {{ bundles[name] }}
{% endblock %}