I use JMSPaymentCoreBundle and JMSPaymentPaypalBundle.
It worked well before, but now I have to change my config.yml for the new Bundle (FOSMessageBundle)
I need to stop using "auto_mapping" and use entity_managers instead
doctrine: dbal: orm: auto_generate_proxy_classes: %kernel.debug%
However, after this change.
The service "payment.plugin_controller" has a dependency on a non-existent service "doctrine.orm.default_entity_manager"
this error occurs.
I think changes to config.yml are causing this problem.
How can I solve this problem?
source share