I have a new ZF 1.10 project (just default module - not multiple modules) and am having to prefix my models' class names with "Application_Model_" in order for them to be picked up from the application/models directory.
How can I take more control of this? For example, I wish to namespace the model classes myself - e.g. as "Blah_ClassName" or perhaps even just "ClassName".
(I know I could use set_include_path() to achieve the latter but that's not very "Zend-like". I'm thinking some sort of change to the autoloader is needed - but what's the best way of doing it?)