I'm trying to integrate Composer into an older PHP app which is running on a server that only supports 5.2. The app was written with Zend Framework 1 and Doctrine 1. After performing the relevant integration and trying the assorted packages available on composer I get errors upon running the app:
PHP Warning: include(Doctrine.php): failed to open stream: No such file or directory in [...]/www/dispatcher.php on line 11
[Sun Oct 21 12:33:31 2012] [error] [client ::1] PHP Warning: include(): Failed opening 'Doctrine.php' for inclusion (include_path='[...]/application/library:[...]/vendor/digital-canvas/zend-framework/library:.:/usr/share/php5:/usr/share/php:[...]/app/application/../library:[...]/application/../ext') in [...]/www/dispatcher.php on line 11
It certainly appears that the issue is that the include_path isn't modified to include the location for Doctrine. The include_paths.php file in the Composer directory only shows:
return array(
$vendorDir . '/digital-canvas/zend-framework/library',
);
and I've noticed none of the composer.json files in the Doctrine 1 packages include a include-path directive which I'm assuming would be what modifies that file. Am I missing something? Are these packages slightly broken and require an explicit include to start the ball rolling?
Adding the proper dir to the array above does fix the issue. But I don't want to have to touch generated files and I'm hoping there's some subtlety to the problem that I'm missing rather than needing to either implement a workaround or figure out how to repair the published packages.