app/vendors is for me a path to include all external libraries produced by third party. For example, that's where I hold the PEAR directory that includes all pear packages I use.
app/controllers/components should only hold cake valid components. This is a good place to create a component that would provide a wrapper for your internal classes, so from your cake controllers you don't call directly to internal PHP classes, but to cake components that would handle the more technical details. by /cake/vendors I'm assuming you are referring to /vendors (not within cake subdirectory, but within cake's core path). Those should be third party tools that could be used in MORE than one cake php project. If I were you I would add a app/libs path, then on your app/config/bootstrap.php include what you deem adequate from this path. Also check this other post on this group: http://groups.google.com/group/cake-php/browse_thread/thread/6f666788e1a0e673/df035d2bb4a92b6c?lnk=gst&q=vendors&rnum=9#df035d2bb4a92b6c --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
