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
|
|
|
|
2009-12-21 20:38:14 +03:00
|
|
|
// Variable $configuration 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
|
|
|
|
|
|
|
$cli = new \Doctrine\Common\Cli\CliController($configuration);
|
2009-09-01 02:24:48 +04:00
|
|
|
$cli->run($_SERVER['argv']);
|