如何迁移用户? (Symfony + FOSUserBundle)

I'm trying to migrate from an old to a new system with the following specifications:

Old System:

  • Symfony 2.7
  • FOSUserBundle ~2.0@dev

New System:

  • Symfony 3.0.5
  • FOSUserBundle 2.0.x-dev

The parameters.secret of app/config/parameters.yml is the same.

Problem: After copying the old fos_user-table to the new DB, I'm not able to login anymore.

Probably caused by a new way of generating the salt and password, because:

I'm able to login, if I replace the salt and password of an old user by the salt and password of a new user, generated by the new system (via DataFixtures).

How can I migrate the users without forcing them to change their password?

Thanks in advance!