Doctrine 2命令行打印Cygwin配置 [英] Doctrine 2 Command line print Cygwin configuration

查看:58
本文介绍了Doctrine 2命令行打印Cygwin配置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在项目中使用Doctrine 2,但是当我尝试访问命令行以从数据库导入实体以生成文件时,它将打印 vendor / bin /中的代码原则

I am trying to use Doctrine 2 in my project, but when I try to access the command line to import the Entities from my database to generate the files, it print the code from vendor/bin/doctrine

dir=$(d=${0%[/\\]*}; cd "$d"; cd '../doctrine/orm/bin' && pwd)

# See if we are running in Cygwin by checking for cygpath program
if command -v 'cygpath' >/dev/null 2>&1; then
    # Cygwin paths start with /cygdrive/ which will break windows PHP,
    # so we need to translate the dir path to windows format. However
    # we could be using cygwin PHP which does not require this, so we
    # test if the path to PHP starts with /cygdrive/ rather than /usr/bin
    if [[ $(which php) == /cygdrive/* ]]; then
            dir=$(cygpath -m $dir);
    fi
fi

dir=$(echo $dir | sed 's/ /\ /g')
"${dir}/doctrine.php" "$@"

我的文件夹结构:

src/
vendor/
bootstrap.php
cli-config.php
composer.json
composer.lock
index.php

bootstrap.php

bootstrap.php

<?php

require_once "vendor/autoload.php";

use Doctrine\ORM\Tools\Setup;
use Doctrine\ORM\EntityManager;

$paths = array("src/Entity");
$isDevMode = false;

// the connection configuration
$dbParams = array(
    'driver'   => 'pdo_mysql',
    'user'     => '',
    'password' => '',
    'dbname'   => '',
);

$config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode);
$entityManager = EntityManager::create($dbParams, $config);

cli-config.php

cli-config.php

<?php

use Doctrine\ORM\Tools\Console\ConsoleRunner;

// replace with file to your own project bootstrap
require_once 'bootstrap.php';

// replace with mechanism to retrieve EntityManager in your app
$entityManager = GetEntityManager();

return ConsoleRunner::createHelperSet($entityManager);

我正尝试在命令行中使用: php vendor / bin /学说--help 。我也在Ubuntu 14.01上使用Vagrant。

I am trying to use in my command line: php vendor/bin/doctrine --help. I am using also Vagrant with Ubuntu 14.01.

我没有使用Symfony 2,只是试图在没有任何框架的情况下安装Doctrine。

I am not using Symfony 2, Just trying to install Doctrine without any framework.

谢谢。

推荐答案

在Windows安装程序中遇到相同的错误,并且此命令可以解决它:

I got the same error when I was in windows setup and this command worked to resolve it:

php vendor/doctrine/orm/bin/doctrine.php orm:schema-tool:create

来源:
http://www.agevaled.com/2013/10/09/doctrine2-getting-started-issues/2147483647 /

这篇关于Doctrine 2命令行打印Cygwin配置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆