I've just started a new Symfony (2.8) project which is a CRM to integrate with an existing OpenCart site. The database is already set up, the only CRM specific tables are the user table for CRM users and projects that are not related to OpenCart.
I have created entities for the user and projects tables, but I need to be able to reference the OpenCart tables too, specifically products, customers and orders. Is it possible to access these without having to create Doctrine entities for them first? I'd rather use Doctrine queries over full SQL but I am not sure if I need to generate entities for all of the OpenCart tables first.
Any help appreciated!
Thank you