This bundle integrates the AliceGenerator library into Symfony.
TrapparAliceGeneratorBundle allows you to generate Alice Fixtures from your existing data.
You can learn more in the documentation for the standalone library.
composer require trappar/alice-generator-bundle
Then, enable the bundle by updating your app/AppKernel.php
file to enable the bundle:
<?php
// in AppKernel::registerBundles()
if (in_array($this->getEnvironment(), ['dev', 'test'])) {
// ...
$bundles[] = new Trappar\AliceGeneratorBundle\TrapparAliceGeneratorBundle();
// ...
}
TrapparAliceGeneratorBundle requires no initial configuration to get you started.
For all available configuration options, please see the configuration reference.
The main method for using this bundle is the included command line application. Use this by running:
console generate:fixtures
And simply follow along with the prompts.
You can also request the FixtureGenerator as a service from the container:
$fixtureGenerator = $container->get('trappar_alice_generator.fixture_generator');
$yaml = $fixtureGenerator->generateYaml($entities);
Learn more in the documentation for the dedicated library.
This bundle was developed by Jeff Way with quite a lot of inspiration from: