doctrine fixture bundle code example

Example 1: doctrine fixture bundle

// Symfony 4
composer require --dev orm-fixtures

Example 2: doctrine fixture bundle

// Symfony 3
composer require --dev doctrine/doctrine-fixtures-bundle

//then register the bundle in app/AppKernel.php

// registerBundles()
if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
    // ...
    $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
}

Example 3: doctrine fixture bundle

// Symfony 3
composer require --dev doctrine/doctrine-fixtures-bundle

Tags:

Php Example