2009-09-02 00:14:10 +00:00
|
|
|
<?php
|
|
|
|
|
2009-12-21 17:38:14 +00:00
|
|
|
require_once __DIR__ . '/../lib/Doctrine/Common/ClassLoader.php';
|
2009-09-02 00:14:10 +00:00
|
|
|
|
2009-12-21 11:06:27 +00:00
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine');
|
2009-12-21 17:38:14 +00:00
|
|
|
$classLoader->setIncludePath(__DIR__ . '/../lib');
|
2009-11-04 22:16:22 +00:00
|
|
|
$classLoader->register();
|
2009-09-02 00:14:10 +00:00
|
|
|
|
2009-12-21 17:38:14 +00:00
|
|
|
$configuration = new \Doctrine\Common\Cli\Configuration();
|
|
|
|
|
|
|
|
$cli = new \Doctrine\Common\Cli\CliController($configuration);
|
2009-09-02 00:14:10 +00:00
|
|
|
$cli->run($_SERVER['argv']);
|