PHP7 now suports Xdebug

This commit is contained in:
Emilien Mantel
2016-02-27 12:38:34 +01:00
parent 089fd3bbb4
commit dfa55e3cb6
3 changed files with 16 additions and 5 deletions

View File

@@ -4,7 +4,11 @@
; configuration for php xdebug module
; priority=20
{% if php_version | version_compare('7.0', 'ge') %}
zend_extension=xdebug.so
{% else %}
zend_extension={{ php_extension_dir.stdout }}/xdebug.so
{% endif %}
{% if xdebug_version.stdout|version_compare('2.3', 'gt') %}
{% endif %}