[2.0] Fix for CLI Configuration and PEAR installer
This commit is contained in:
parent
f8df621751
commit
cfb42d2eb9
1 changed files with 18 additions and 0 deletions
|
@ -5,7 +5,25 @@ require_once 'Doctrine/Common/ClassLoader.php';
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine');
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine');
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
|
||||||
|
$configFile = getcwd() . DIRECTORY_SEPARATOR . 'cli-config.php';
|
||||||
$configuration = new \Doctrine\Common\Cli\Configuration();
|
$configuration = new \Doctrine\Common\Cli\Configuration();
|
||||||
|
|
||||||
|
if (file_exists($configFile)) {
|
||||||
|
if ( ! is_readable($configFile)) {
|
||||||
|
trigger_error(
|
||||||
|
'Configuration file [' . $configFile . '] does not have read permission.', E_ERROR
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
require $configFile;
|
||||||
|
|
||||||
|
foreach ($GLOBALS as $configCandidate) {
|
||||||
|
if ($configCandidate instanceof \Doctrine\Common\Cli\Configuration) {
|
||||||
|
$configuration = $configCandidate;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$cli = new \Doctrine\Common\Cli\CliController($configuration);
|
$cli = new \Doctrine\Common\Cli\CliController($configuration);
|
||||||
$cli->run($_SERVER['argv']);
|
$cli->run($_SERVER['argv']);
|
Loading…
Add table
Reference in a new issue