InstallationΒΆ

To install, add the following to your composer.json file:

{
    "require": {
        "zanui/zanui-fixtures-bundle": "2.0.*"
    }
}

Update the vendor libraries:

$ php composer.phar update zanui/zanui-fixtures-bundle

Finally, register the DoctrineFixturesBundle and the ZanuiFixturesBundle in app/AppKernel.php.

// ...
public function registerBundles()
{
    $bundles = array(
        // ...
        new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
        new Zanui\FixturesBundle\ZanuiFixturesBundle(),
        // ...
    );
    // ...
}