Add Doctrine fixtures bundle

This commit is contained in:
Julien Fastré 2014-12-27 15:51:44 +01:00
parent 1997f6e5b1
commit af8b3da5e2
2 changed files with 4 additions and 1 deletions

View File

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

View File

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