which are the recommended settings in the php configuration file php.ini for a testing environment code example
Example: content for php.ini created manually
// add the debug flag here
$debugMode = $_ENV['MFTF_DEBUG'] ?? false;
if (!(bool)$debugMode && extension_loaded('xdebug')) {
xdebug_disable();