2009-09-01 02:24:48 +04:00
|
|
|
<?php
|
|
|
|
|
2010-06-17 22:32:26 +04:00
|
|
|
require_once '../../lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php';
|
2009-09-01 02:24:48 +04:00
|
|
|
|
2010-06-18 02:23:17 +04:00
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\ORM', realpath(__DIR__ . '/../../lib'));
|
2009-09-11 23:50:48 +04:00
|
|
|
$classLoader->register();
|
2010-06-18 02:23:17 +04:00
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\DBAL', realpath(__DIR__ . '/../../lib/vendor/doctrine-dbal/lib'));
|
2010-06-17 22:32:26 +04:00
|
|
|
$classLoader->register();
|
2010-06-18 02:23:17 +04:00
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\Common', realpath(__DIR__ . '/../../lib/vendor/doctrine-common/lib'));
|
2010-06-17 22:32:26 +04:00
|
|
|
$classLoader->register();
|
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', realpath(__DIR__ . '/../../lib/vendor'));
|
|
|
|
$classLoader->register();
|
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Entities', __DIR__);
|
|
|
|
$classLoader->register();
|
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Proxies', __DIR__);
|
2010-04-08 07:47:42 +04:00
|
|
|
$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);
|
2010-04-16 21:23:07 +04:00
|
|
|
$helperSet = $cli->getHelperSet();
|
|
|
|
foreach ($helpers as $name => $helper) {
|
|
|
|
$helperSet->set($helper, $name);
|
|
|
|
}
|
2010-04-08 07:47:42 +04: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-12 01:08:36 +04:00
|
|
|
new \Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand(),
|
2010-04-08 07:47:42 +04:00
|
|
|
|
|
|
|
));
|
|
|
|
$cli->run();
|