Hi,
Trying to deploy to heroku, and following the steps given in the hosting documentation. The files are pushed up, but the admin page displays an error dump because the login plugin failed to load. More specifically, this section of user/plugins/login/login.php is invoked:
// Autoload classes
$autoload = __DIR__ . '/vendor/autoload.php';
if (!is_file($autoload)) {
throw new \Exception('Login Plugin failed to load. Composer dependencies not met.');
}
The vendor/autoload.php does appear to be there. Certainly it is locally.
Any ideas? Thanks in advance.