From af8b3da5e296e771ae8cb7ba85bc97eee1cfb51d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Sat, 27 Dec 2014 15:51:44 +0100 Subject: [PATCH] Add Doctrine fixtures bundle --- Tests/Fixtures/App/AppKernel.php | 2 ++ composer.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Tests/Fixtures/App/AppKernel.php b/Tests/Fixtures/App/AppKernel.php index b44c4aea3..0f63f79bb 100644 --- a/Tests/Fixtures/App/AppKernel.php +++ b/Tests/Fixtures/App/AppKernel.php @@ -2,6 +2,7 @@ use Symfony\Component\HttpKernel\Kernel; use Symfony\Component\Config\Loader\LoaderInterface; +use Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle; class AppKernel extends Kernel { @@ -17,6 +18,7 @@ class AppKernel extends Kernel new Chill\PersonBundle\ChillPersonBundle(), new \Symfony\Bundle\AsseticBundle\AsseticBundle(), new Symfony\Bundle\SecurityBundle\SecurityBundle(), + new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle() ); } diff --git a/composer.json b/composer.json index f8dc65c4e..13e53c9b5 100644 --- a/composer.json +++ b/composer.json @@ -33,6 +33,7 @@ "require-dev": { "chill-project/main": "dev-master@dev", "chill-project/custom-fields": "dev-master@dev", - "chill-project/person": "dev-master@dev" + "chill-project/person": "dev-master@dev", + "doctrine/doctrine-fixtures-bundle": "~2.2" } }