I have a Zend application which has a CMS module and a User module. I need to do something in the CMS module's bootstrap that involves a service under the User module.
When I try to instantiate the service class, I get a "Class not found" error, suggesting that the resources in the Users module are not auto-loaded yet.
I want to stress that I have to do it during bootstrap, not after.
How can I possibly load a resource from my Users module from within the bootstrap of my Admin module?