From ff3479983e68a05a558991d67d2af1cb647a365b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 25 Nov 2014 22:33:39 +0100 Subject: [PATCH] add doctrine/doctrine-fixtures-bundle in bundle depedencies --- Tests/Fixtures/App/app/AppKernel.php | 3 ++- composer.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Tests/Fixtures/App/app/AppKernel.php b/Tests/Fixtures/App/app/AppKernel.php index 332e8e396..6bb328454 100644 --- a/Tests/Fixtures/App/app/AppKernel.php +++ b/Tests/Fixtures/App/app/AppKernel.php @@ -15,7 +15,8 @@ class AppKernel extends Kernel new \Symfony\Bundle\AsseticBundle\AsseticBundle(), new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), new Chill\PersonBundle\ChillPersonBundle(), - new Chill\MainBundle\ChillMainBundle() + new Chill\MainBundle\ChillMainBundle(), + new \Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle, #add here all the required bundle (some bundle are not required) ); } diff --git a/composer.json b/composer.json index 338093410..2ce8008fe 100644 --- a/composer.json +++ b/composer.json @@ -28,11 +28,11 @@ "doctrine/common": "2.4.*@dev", "doctrine/doctrine-bundle": "~1.2@dev", "chill-project/main": "*@dev", - "chill-project/custom-fields": "*@dev" + "chill-project/custom-fields": "*@dev", + "doctrine/doctrine-fixtures-bundle": "~2.2" }, "require-dev": { "symfony/dom-crawler": "2.5", - "doctrine/doctrine-fixtures-bundle": "~2.2", "symfony/security": "~2.5" } }