ryzhov/fixtures-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

FixturesBundle for symfony framework

dev-master / 1.1.x-dev 2018-09-21 10:11 UTC

This package is not auto-updated.

Last update: 2020-08-21 20:52:49 UTC


README

The FixturesBundle provides usefull service for load fixtures from yml or csv files

License

This bundle is released under the MIT license

Installation

Require the bundle and its dependencies with composer:

$ composer require ryzhov/fixtures-bundle

Register the bundle:

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        new Ryzhov\Bundle\FixturesBundle(),
    );
}

Usage