php-config-cli.ini.j2 355 B

12345678910111213
  1. {% if ansible_prolog -%}
  2. {% from 'templates/ansible/prolog.j2' import prolog with context %}
  3. {{ prolog(';') }}
  4. {% endif -%}
  5. ;
  6. ; local PHP configuration overrides for php-cli
  7. ;
  8. {% if php_local_config is defined %}
  9. {% set _dummy = php_config.update(php_local_config) %}
  10. {% endif %}
  11. {% for key in php_config %}
  12. {{ key }} = {{ php_config[key] }}
  13. {% endfor %}