Update
This commit is contained in:
parent
a37785b391
commit
33458b2ca3
9915 changed files with 1247019 additions and 0 deletions
|
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
$em = include __DIR__.'/../em.php';
|
||||
|
||||
$cli = new Symfony\Component\Console\Application('My CLI interface', '1.0.0');
|
||||
$cli->setCatchExceptions(true);
|
||||
// commands
|
||||
$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(),
|
||||
new Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand(),
|
||||
));
|
||||
// helpers
|
||||
$helpers = array(
|
||||
'db' => new Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
|
||||
'em' => new Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em),
|
||||
);
|
||||
foreach ($helpers as $name => $helper) {
|
||||
$cli->getHelperSet()->set($helper, $name);
|
||||
}
|
||||
|
||||
return $cli;
|
||||
Loading…
Add table
Add a link
Reference in a new issue