add doctrine/doctrine-fixtures-bundle in bundle depedencies

This commit is contained in:
Julien Fastré 2014-11-25 22:33:39 +01:00
parent 7f5e464218
commit ff3479983e
2 changed files with 4 additions and 3 deletions

View File

@ -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)
);
}

View File

@ -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"
}
}