{# This file MUST NOT CONTAINS trans tag #} {% extends '/setup/wrapper.html.twig' %} {% macro constraint_format(constraint) %} {% if not constraint.is_ok() %}
  • {{ constraint.get_message() }}
  • {% endif %} {% endmacro %} {% block content %}

    INSTALL

    You MUST resolve these problems to continue

    {% if php_constraints is defined %}

    PHP Version

      {%for constraint in php_constraints %} {{ _self.constraint_format(constraint) }} {% endfor %}
    {% endif %} {% if writability_constraints is defined %}

    Filesystem configuration

      {%for constraint in writability_constraints %} {{ _self.constraint_format(constraint) }} {% endfor %}
    {% endif %} {% if extension_constraints is defined %}

    PHP extensions

      {%for constraint in extension_constraints %} {{ _self.constraint_format(constraint) }} {% endfor %}
    {% endif %}
    {% if opcode_constraints is defined %}

    PHP Cache System

      {%for constraint in opcode_constraints %} {{ _self.constraint_format(constraint) }} {% endfor %}
    {% endif %} {% if php_conf_constraints is defined %}

    PHP configuration

      {%for constraint in php_conf_constraints %} {{ _self.constraint_format(constraint) }} {% endfor %}
    {% endif %} {% if locales_constraints is defined %}

    Locales Support

      {%for constraint in locales_constraints %} {{ _self.constraint_format(constraint) }} {% endfor %}
    {% endif %}
    {% endblock %}