Depending on what the "project" is.
If it's an application, bundle it.
If it's a library, don't.
EDIT: To elaborate a bit more:
When making an application, you usually don't want to burden (or rely on) the user with installing and upgrading to the correct library versions. Additionally, if users use different versions of libraries, it'll make it more difficult to solve bugs for your software (e.g. "MyApp 1.0.6 doesn't work with SomeLib 2.3.5 if it was installed via PEAR"). You probably want your environment to be as constant as possible; even different PHP versions are often annoying.
When making a library, otoh, you don't want to cause more side effects than absolutely necessary and want to give all the power to it's user (which in this case is a developer). If your library needs SomeLib 2.3.5, but the app that uses your library needs SomeLib 2.3.7, then your bundling it could cause problems.
Basic point: Users of libraries will test after including them, users of apps won't after installing them.
