2009-08-31 22:24:48 +00:00
|
|
|
<?php
|
|
|
|
|
2013-05-18 01:42:55 +04:00
|
|
|
$em = require_once __DIR__.'/bootstrap.php';
|
2009-12-21 17:38:14 +00:00
|
|
|
|
2010-08-23 08:21:41 +02:00
|
|
|
$cli = new \Symfony\Component\Console\Application('Doctrine Command Line Interface', Doctrine\Common\Version::VERSION);
|
2010-04-08 00:47:42 -03:00
|
|
|
$cli->setCatchExceptions(true);
|
2012-11-17 00:12:29 +01:00
|
|
|
|
2013-05-18 01:42:55 +04:00
|
|
|
$cli->setHelperSet(new Symfony\Component\Console\Helper\HelperSet(array(
|
|
|
|
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
|
|
|
|
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
|
|
|
|
)));
|
2012-11-17 00:12:29 +01:00
|
|
|
|
2010-04-08 00:47:42 -03:00
|
|
|
$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(),
|
2010-05-11 23:08:36 +02:00
|
|
|
new \Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand(),
|
2010-04-08 00:47:42 -03:00
|
|
|
|
|
|
|
));
|
2010-08-23 08:21:41 +02:00
|
|
|
$cli->run();
|