I didn't realize a dependency was causing PHP to update which in turn affected engineAPI.
Is there a way to set an error that checks to see what version of PHP is installed into engine, and then fire off a warning to specifically wrong php version.
possible to do something like this ??
$currentPHP = phpversion();
$versionNumber = "5.3.3";
if($currentPHP != $versionNumber){
throw new Exception('PHP Version Error - ' .$versionNumber);
}