Is there a way to build a large-scale, multi-user (meaning users can register and login) web application / website with a php framework like symfony (MVC pattern) and intergrate a CMS like wordpress to manage the site?
My desired goal is to use wordpress to manage the content of the site, and quickly and easily add new features to site using the vast number of wordpress pluggins, while at the same time, having the MVC functionality i need to build new features that wordpress doesn't provide, as well as have automated testing available through the framework.
Initially a lot of the functionality the site needs is already available through wordpress (such as setting up the homepages, blogging, forums, feeds, and feedbacks), but the site needs to be scalable in a manner that is RAD/OOP friendly and allows automated test to be ran on it.
I'm not trying to be lazy, just trying to work smarter not harder. I could create my own CMS, blogger, forum and what not through a framework, but why reinvent all those components if they already exist.
So, finally is this possible, and are there any resources (books, tutorials, case studies, blogs) on how to do this kind of thing?
thanks in advance!