Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between vendors and app/Vendor on cakephp

What´s difference between those two directories on Cakephp2?

like image 603
rizidoro Avatar asked Dec 16 '22 00:12

rizidoro


1 Answers

the root one is the global vendors folder - if multiple apps share the same root (cake + plugins + vendors):

/lib/Cake
/plugins
/vendors
/app1
/app2
/app3

the APP one is the app specific one and takes precedence - makes sense doesnt it?

like image 119
mark Avatar answered Dec 30 '22 11:12

mark