Problem/Motivation
Upgrading from Drupal 9.5.11 to 10.1
Running : "drupal/simplesamlphp_auth": "4.x-dev@dev",
Composer installs everything well.
But when I go to load the site, I get this error.
Error: Class "SimpleSAML_Logger" not found in require() (line 148 of /app/vendor/simplesamlphp/simplesamlphp/config/config.php).
SimpleSAML\Configuration::loadFromFile('/app/vendor/simplesamlphp/simplesamlphp/config/config.php', 1) (Line: 283)
SimpleSAML\Configuration::getConfig() (Line: 365)
SimpleSAML\Configuration::getInstance() (Line: 42)
SimpleSAML\Auth\Simple->__construct('default-sp') (Line: 150)
Drupal\simplesamlphp_auth\Service\SimplesamlphpAuthManager->getSimpleSamlInstance() (Line: 213)
Drupal\simplesamlphp_auth\Service\SimplesamlphpAuthManager->isAuthenticated() (Line: 93)
Drupal\simplesamlphp_auth\EventSubscriber\SimplesamlSubscriber->checkAuthStatus(Object, 'kernel.request', Object)
call_user_func(Array, Object, 'kernel.request', Object) (Line: 111)
Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch(Object, 'kernel.request') (Line: 157)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 106)
Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 85)
Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 704)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)
I've deleted the vendor directory and ran `composer update -W` to rebuild everything.
Same result.
Thanks!