cryptPassword('102030!!!'); $user = (new User()) ->setUserName('geo@roptron.gr') ->setPassword($password) ->setRoles([1]); $userManager->createUserToken($user); $algos = [ password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 10 ]), password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 10 ]), password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 10 ]), password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 9 ]), password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 9 ]), password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 9 ]), password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 11 ]), password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 11 ]), password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 11 ]), password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 12 ]), password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 12 ]), password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 12 ]), password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 8 ]), password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 8 ]), password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 8 ]), password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 7 ]), password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 7 ]), password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 7 ]) ] ?>