From 03f92ae7e28554d62eace610e02e90ac2fb9b926 Mon Sep 17 00:00:00 2001 From: Erick Hitter <gitlab-s@mxs.ethitter.com> Date: Tue, 14 Jun 2022 03:44:43 +0000 Subject: [PATCH] Correct how Xdebug is loaded --- plugins/templates/before-script.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/templates/before-script.yml b/plugins/templates/before-script.yml index 273f93f..7a9ac99 100644 --- a/plugins/templates/before-script.yml +++ b/plugins/templates/before-script.yml @@ -16,5 +16,5 @@ before_script: - composer global require yoast/phpunit-polyfills # Enable Xdebug for coverage reports - - echo "extension=xdebug.so" > /usr/local/etc/php/conf.d/xdebug.ini + - echo "zend_extension=xdebug.so" > /usr/local/etc/php/conf.d/xdebug.ini - echo "xdebug.mode=coverage" >> /usr/local/etc/php/conf.d/xdebug.ini -- GitLab