Adding support for various composer autoload file locations, making composer optional
This commit is contained in:
parent
9445502885
commit
8231fb2c68
1 changed files with 6 additions and 5 deletions
|
@ -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';
|
||||||
|
|
Loading…
Add table
Reference in a new issue