SkillAgentSearch skills...

AliceGeneratorBundle

A Symfony bundle to convert existing Doctrine entities into Alice fixtures

Install / Use

/learn @trappar/AliceGeneratorBundle
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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

View on GitHub
GitHub Stars45
CategoryDevelopment
Updated2y ago
Forks12

Languages

PHP

Security Score

75/100

Audited on May 31, 2023

No findings