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
In getApplication() for the Drupal boostrap class it assumes Drupal was not built with Composer.
It needs to be changed to something like
//load drupals autoload.php, so their classes are available
if (file_exists('./vendor/autoload.php')) {
$autoloader = require './vendor/autoload.php';
} else {
$autoloader = require '../vendor/autoload.php';
}