FOSUserBundle and Symfony 3.0? FOSUserBundle and Symfony 3.0? php php

FOSUserBundle and Symfony 3.0?


At the moment, there isn't a tagged version (official version) for support of the new framework version, BTW, in this github issue says that:

in the the master branch is now compatible with Symfony.

So try with this composer configuration

friendsofsymfony/user-bundle: "dev-master"

Hope this help


This command worked for me with Symfony 3.2.1:

composer require friendsofsymfony/user-bundle "~2.0@dev"


Editing my composer.json to include

"friendsofsymfony/user-bundle": "^2.0.0"

and then running

composer update

worked for me after finding this packagist page

The end result (of installing the bundle) is the same and in my opinion, the requirement statement looks/feels better in my project by not being a dev branch.