You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @todo Sort out xdebug in vagrant so that this works in all sandboxes
35
+
* For now, it is safer to test for it rather then remove it.
36
+
*/
37
+
echo"PHPVisio tests beginning\n";
38
+
39
+
if(extension_loaded('xdebug')) {
40
+
echo"Xdebug extension loaded and running\n";
41
+
xdebug_enable();
42
+
} else {
43
+
echo'Xdebug not found, you should run the following at the command line: echo "zend_extension=/usr/lib64/php/modules/xdebug.so" > /etc/php.d/xdebug.ini' . "\n";
0 commit comments