Skip to content

A Symfony bundle to convert existing Doctrine entities into Alice fixtures

License

Notifications You must be signed in to change notification settings

trappar/AliceGeneratorBundle

Repository files navigation

AliceGeneratorBundle Build Status

This bundle integrates the AliceGenerator library into Symfony.

Introduction

TrapparAliceGeneratorBundle allows you to generate Alice Fixtures from your existing data.

You can learn more in the documentation for the standalone library.

Table of Contents

Installation

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();
    // ...
}

Configuration

TrapparAliceGeneratorBundle requires no initial configuration to get you started.

For all available configuration options, please see the configuration reference.

Usage

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.

Resources

Credits

This bundle was developed by Jeff Way with quite a lot of inspiration from:

Other contributors.

License

license