Coder Social home page Coder Social logo

alicebundle's Introduction

AliceBundle

A Symfony2 bundle to help load Doctrine Fixtures with Alice

Build Status Scrutinizer Quality Score Code Coverage SensioLabsInsight

Introduction

This bundle provides a new loader as well as an abstract DataFixureLoader that makes it easy for you to add fixtures to your bundles. Additionally, the loader shares the references to your fixtures among your bundles, so that you can use them there. Refer to the Alice documentation for more information.

And if you prefer watching, a screencast about using this bundle is also available: https://knpuniversity.com/screencast/alice-fixtures

Installation

Simply run assuming you have installed composer.phar or composer binary (or add to your composer.json and run composer install:

$ composer require hautelook/alice-bundle

You can follow dev-master, or use a more stable tag (recommended for various reasons). On the Github repository, or on Packagist, you can always find the latest tag. It is very likely that you have a stable stability setting in your composer file which will prevent some of the required packages from being installed. To get around this, you will have to install the two required packages as well:

$ composer.phar require "doctrine/data-fixtures dev-master"
$ composer.phar require "doctrine/doctrine-fixtures-bundle 2.2.*"
$ composer.phar require "hautelook/alice-bundle 0.1.*"

Now add the Bundle to your Kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
        new Hautelook\AliceBundle\HautelookAliceBundle(),
        // ...
    );
}

Configuration

You can configure the Seed, and the Locale that the Faker will use:

# app/config/config.yml

hautelook_alice:
    locale: en_US   # default
    seed: 1         # default

Usage

Simply add a loader class in your bundle, and extend the DataFixtureLoader class. Example

<?php

namespace Acme\DemoBundle\DataFixtures\ORM;

use Hautelook\AliceBundle\Alice\DataFixtureLoader;
use Nelmio\Alice\Fixtures;

class TestLoader extends DataFixtureLoader
{
    /**
     * {@inheritDoc}
     */
    protected function getFixtures()
    {
        return  array(
            __DIR__ . '/test.yml',

        );
    }
}

Future and ToDos:

  • Unit and functional tests
  • Clean up composer dev dependencies

alicebundle's People

Contributors

baldurrensch avatar cordoval avatar ddeboer avatar h4cc avatar jjanvier avatar kingcrunch avatar nyholm avatar spolischook avatar weaverryan avatar

Watchers

 avatar  avatar

Forkers

gpekz

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.