Andrey F. Mindubaev
                                            Andrey F. Mindubaev
                                        
                                    This happening here: - https://github.com/schmittjoh/JMSDiExtraBundle/blob/master/HttpKernel/ControllerInjectorsWarmer.php#L35 Cache warmer try to find all controllers in all bundles. After this it create injector for every controller class, including controllers with `@Nelmio\ApiDocBundle\Annotation\ApiDoc` annotation.
I think i have found a problem. And it is not possible to ignore **@ApiDoc** annotation right now: `doctrine/annotations` package does not allow to ignore valid annotations =( Also i...
@Tomsgu problem with `session` was solved with https://github.com/symfony/recipes/pull/333, problem with `templating` and `mailer` will be solved with my PR from today. After there will be a problem with `db_driver` parameter....
@Tomsgu my solution is "use new default value for `db_driver`", a new "db_driver" will report about problems with configuration in runtime, without requirement for `doctrine-bundle` and etc. See https://github.com/FriendsOfSymfony/FOSUserBundle/pull/2708
@Tomsgu we could create recipe right here! I've created a new branch in my FOSUserBundle fork and merged boths PRs into it. To start using it and test it you...
We could even create an instruction on a page http://127.0.0.1:8000/register/ with `RuntimeException` ! This how it looks now: ```php public function getClass() { throw new \RuntimeException('The child node "db_driver" at...
Also we cound discuss new recipe here in comments and depelop recipe itself in `symfony/recipes-contrib` fork in https://github.com/covex-nn/recipes-contrib/tree/fosub/friendsofsymfony/user-bundle/2.1 (it is just an experiment, described in https://github.com/symfony/recipes/issues/299): Use this commands to...
@XWB it is because using default value `orm` for parameter `fos_user.db_driver` will require `doctrine/doctrine-bundle` and without this package travis for `symfony/recipes-contrib` will fail.
I was not sure, this could be done =( See @stof's comment about `SwiftmailerBundle as a required dependency` https://github.com/FriendsOfSymfony/FOSUserBundle/issues/2562#issuecomment-333584292 - i guess with `doctrine/doctrine-bundle` will be the same: `as this...
It would be possible with this PR and after fixing bug about `resetting: false` =) See https://github.com/FriendsOfSymfony/FOSUserBundle/issues/2704#issuecomment-356740957