我想在Symfony 2.1.4中安装和配置DoctrineFixturesBundle和doctrine-fixtures。谁能给我一个指南。
您的问题可能已经在DoctrineFixturesBundle问题
部分得到了解答,无论如何,我将总结在symfony 2.1.4版本中安装和配置DoctrineFixturesBundle的步骤。
步骤 1 :
打开 composer.json 并在 require 部分附加以下代码。此文件位于项目的根文件夹中
{
"require": {
"doctrine/doctrine-fixtures-bundle": "dev-master",
"doctrine/data-fixtures": "dev-master"
}
}
第 2 步:
在终端中运行以下命令
php composer.phar update
最后一步:
将以下内容附加到您的应用程序/应用程序内核中.php
// ...
public function registerBundles()
{
$bundles = array(
// ...
new DoctrineBundleFixturesBundleDoctrineFixturesBundle(),
// ...
);
// ...
}
希望对您有所帮助。