In CakePHP there is a feature where you can setup a hierarchy of directories for pretty much anything. It works by scanning each directory until it hits the file it needs based on the route. I'm toying with the idea of having one main app and harbouring custom code in the same place.
Example
/app
/controllers
/acme.example.com
/models
/views
/acme.example.com
/public
So say I have an application that covers mostly what clients want but some of the clients have requested a specific feature. Rather than duplicate the entire app and re-host it I would like to tell Phalcon use directory A and B for controllers (or whatever) does Phalcon have such a feature? I only seem to be able to find examples of creating a backend and a frontend.