Fix bin/doctrine.php global doctrine binary to work with Symfony components
This commit is contained in:
parent
e4d8efa394
commit
c98543c1ef
1 changed files with 34 additions and 8 deletions
|
@ -2,12 +2,15 @@
|
||||||
|
|
||||||
require_once 'Doctrine/Common/ClassLoader.php';
|
require_once 'Doctrine/Common/ClassLoader.php';
|
||||||
|
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine');
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', __DIR__ . '/../lib');
|
||||||
|
$classLoader->register();
|
||||||
|
|
||||||
|
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', __DIR__ . '/../lib/vendor');
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
|
||||||
$configFile = getcwd() . DIRECTORY_SEPARATOR . 'cli-config.php';
|
$configFile = getcwd() . DIRECTORY_SEPARATOR . 'cli-config.php';
|
||||||
|
|
||||||
$configuration = null;
|
$helperSet = null;
|
||||||
if (file_exists($configFile)) {
|
if (file_exists($configFile)) {
|
||||||
if ( ! is_readable($configFile)) {
|
if ( ! is_readable($configFile)) {
|
||||||
trigger_error(
|
trigger_error(
|
||||||
|
@ -17,15 +20,38 @@ if (file_exists($configFile)) {
|
||||||
|
|
||||||
require $configFile;
|
require $configFile;
|
||||||
|
|
||||||
foreach ($GLOBALS as $configCandidate) {
|
foreach ($GLOBALS as $helperSetCandidate) {
|
||||||
if ($configCandidate instanceof \Doctrine\Common\CLI\Configuration) {
|
if ($helperSetCandidate instanceof \Symfony\Components\Console\Helper\HelperSet) {
|
||||||
$configuration = $configCandidate;
|
$helperSet = $helperSetCandidate;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$configuration = ($configuration) ?: new \Doctrine\Common\CLI\Configuration();
|
$helperSet = ($helperSet) ?: new \Symfony\Components\Console\Helper\HelperSet();
|
||||||
|
|
||||||
$cli = new \Doctrine\Common\CLI\CLIController($configuration);
|
$cli = new \Symfony\Components\Console\Application('Doctrine Command Line Interface', Doctrine\Common\Version::VERSION);
|
||||||
$cli->run($_SERVER['argv']);
|
$cli->setCatchExceptions(true);
|
||||||
|
$cli->setHelperSet($helperSet);
|
||||||
|
$cli->addCommands(array(
|
||||||
|
// DBAL Commands
|
||||||
|
new \Doctrine\DBAL\Tools\Console\Command\RunSqlCommand(),
|
||||||
|
new \Doctrine\DBAL\Tools\Console\Command\ImportCommand(),
|
||||||
|
|
||||||
|
// ORM Commands
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\MetadataCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\ResultCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\QueryCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\DropCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\EnsureProductionSettingsCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ConvertDoctrine1SchemaCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateRepositoriesCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateEntitiesCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ConvertMappingCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\RunDqlCommand(),
|
||||||
|
|
||||||
|
));
|
||||||
|
$cli->run();
|
Loading…
Add table
Reference in a new issue