11 lines
295 B
PHP
11 lines
295 B
PHP
<?php
|
|
|
|
require_once 'Doctrine/Common/ClassLoader.php';
|
|
|
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine');
|
|
$classLoader->register();
|
|
|
|
$configuration = new \Doctrine\Common\Cli\Configuration();
|
|
|
|
$cli = new \Doctrine\Common\Cli\CliController($configuration);
|
|
$cli->run($_SERVER['argv']); |