我将ZF3与学说一起使用,当我执行命令./vendor/bin/doctrine
时要查看可能的命令,我将其视为错误:
您缺少" cli-config.php"或" config/cli-config.php"文件 项目,需要使学说控制台工作。您可以使用 以下样品作为模板:
<?php use DoctrineORMToolsConsoleConsoleRunner; // 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);
有人知道如何解决这个问题吗?
而不是使用./vendor/bin/doctrine-module
。
您使用的命令是为了当您不使用学说作为ZF3 模块时,但是正如所说的,这是您普通PHP项目中的工具。
与您将php bin/console doctrine:*
与Symfony一起使用。
文档此处