ryzhov / fixtures-bundle
FixturesBundle for symfony framework
Installs: 58
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
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(), ); }