extension('security', [ 'password_hashers' => [ PasswordAuthenticatedUserInterface::class => 'auto', ], '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') { $containerConfigurator->extension('security', [ 'password_hashers' => [ PasswordAuthenticatedUserInterface::class => [ 'algorithm' => 'auto', 'cost' => 4, 'time_cost' => 3, 'memory_cost' => 10, ], ], ]); } };