ryzhov / fixtures-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
FixturesBundle for symfony framework
Package info
github.com/ryzhov/fixtures-bundle
Type:symfony-bundle
pkg:composer/ryzhov/fixtures-bundle
dev-master / 1.1.x-dev
2018-09-21 10:11 UTC
Requires
- php: >=5.3.2
- doctrine/data-fixtures: ^1.1
- keboola/csv: ^1.1
- symfony/dependency-injection: ^3.2
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(), ); }