passwordHasher(PasswordAuthenticatedUserInterface::class, 'auto'); $containerConfigurator->extension('security', [ 'providers' => [ 'users_in_memory' => [ 'memory' => NULL], ], 'firewalls' => [ 'dev' => [ 'pattern' => '^/(_(profiler|wdt)|css|images|js)/', 'security' => FALSE, ], 'main' => [ 'lazy' => TRUE, 'provider' => 'users_in_memory', ], ], 'access_control' => NULL, ]); if ($containerConfigurator->env() === 'test') { $security->passwordHasher(PasswordAuthenticatedUserInterface::class, [ 'algorithm' => 'auto', 'cost' => 4, 'time_cost' => 3, 'memory_cost' => 10, ]); } };