2009-09-01 02:24:48 +04:00
|
|
|
<?php
|
|
|
|
|
2009-12-22 16:56:30 +03:00
|
|
|
require __DIR__ . '/../../lib/Doctrine/Common/ClassLoader.php';
|
2009-09-01 02:24:48 +04:00
|
|
|
|
2009-12-22 16:56:30 +03:00
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', __DIR__ . '/../../lib');
|
2009-09-11 23:50:48 +04:00
|
|
|
$classLoader->register();
|
2009-09-01 02:24:48 +04:00
|
|
|
|
2010-04-08 07:47:42 +04:00
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', __DIR__ . '/../../lib/vendor');
|
|
|
|
$classLoader->register();
|
|
|
|
|
|
|
|
// Variable $helperSet is defined inside cli-config.php
|
2009-12-22 16:56:30 +03:00
|
|
|
require __DIR__ . '/cli-config.php';
|
2009-12-21 20:38:14 +03:00
|
|
|
|
2010-04-08 07:47:42 +04:00
|
|
|
$cli = new \Symfony\Components\Console\Application('Doctrine Command Line Interface', Doctrine\Common\Version::VERSION);
|
|
|
|
$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();
|