1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Adding support for various composer autoload file locations, making composer optional

This commit is contained in:
Marco Pivetta 2012-06-09 10:48:58 +02:00
parent 9445502885
commit 8231fb2c68

View file

@ -17,11 +17,12 @@
* <http://www.doctrine-project.org>. * <http://www.doctrine-project.org>.
*/ */
if (!@include __DIR__ . '/../../../autoload.php') { $previousDir = null;
die(<<<'EOT' $currentDir = __DIR__;
This command can only be run when Doctrine is installed through Composer.
EOT while ($previousDir !== $currentDir && !@include_once($currentDir . '/vendor/autoload.php')) {
); $previousDir = $currentDir;
$currentDir = dirname($currentDir);
} }
$configFile = getcwd() . DIRECTORY_SEPARATOR . 'cli-config.php'; $configFile = getcwd() . DIRECTORY_SEPARATOR . 'cli-config.php';