1// Symfony 3
2composer require --dev doctrine/doctrine-fixtures-bundle
3
4//then register the bundle in app/AppKernel.php
5
6// registerBundles()
7if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
8 // ...
9 $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
10}