I'm building my first PHP project, and am not sure where to put external libraries like doctrine. I could put them inside my app, making it easier to reference with a relative path:
myproject
app
public
lib
doctrine
log
Or I could put them outside my project directory structure, making it easier to share between multiple projects:
myproject
app
public
log
lib
doctrine
Is there a standard or best practice for this?