I would like to ask, what is the best way to structure a project with a frontend and a backend in symfony2? In other versions of symfony this was easy, because you created two applications, frontend and backend, then all the libraries/models were shared between those applications.
Now in symfony2, everything is a bundle. What is not really clear for me is how could I represent the "two" applications, frontend and backend. Should I create two namespaces frontend, and backend? I would like to keep my entities in just one place, rather than accessing them from the two applications.
Thank you and best regards.