I want to integrate Doctrine in a freshly build PHP5 framework. I am using namespaces. The librairy is organised in maps :
app (controllers, blocks, actions, ...)
ext (external librairies)
sys (kernel and route objects).
Now I want to integrate Doctrine which is in map ext.
In the calling class I have :
namespace app\example;
use ext\Doctrine\DBAL\DriverManager;
$conn = DriverManager::getConnection($connectionParams, $config);
To make this work I need to change every namespace reference in Doctrine to e.g. :
namespace ext\Doctrine\DBAL;
use ext\Doctrine\Common\EventManager;
In my opinion this is a very unelegant solution.
Question : Is there a way to not change Doctrine namespaces ? Is there a better strategy to deal with external librairies ?