PHPackages                             funddy/fixture-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. funddy/fixture-bundle

ActiveSymfony-bundle

funddy/fixture-bundle
=====================

FixtureBundle for Symfony2

v2.0.0(12y ago)31.2kMITPHPPHP &gt;=5.3.3

Since Jul 2Pushed 12y ago1 watchersCompare

[ Source](https://github.com/funddy/fixture-bundle)[ Packagist](https://packagist.org/packages/funddy/fixture-bundle)[ Docs](https://github.com/funddy/fixture-bundle)[ RSS](/packages/funddy-fixture-bundle/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (4)Versions (2)Used By (0)

FunddyFixtureBundle
===================

[](#funddyfixturebundle)

[![Build Status](https://camo.githubusercontent.com/860fd815469c823eb95eb1cd41484d83015b0f5aa54132c0b6a637ac9a1d9bb4/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f66756e6464792f666978747572652d62756e646c652e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/funddy/fixture-bundle)

Fixtures bundle for [Funddy fixture component](https://github.com/funddy/fixture).

Setup and Configuration
-----------------------

[](#setup-and-configuration)

Add the following to your composer.json file:

```
{
    "require": {
        "funddy/fixture-bundle": "2.0.*"
    }
}
```

Update the vendor libraries:

```
curl -s http://getcomposer.org/installer | php
php composer.phar install

```

For finishing, register the Bundle FunddyFixtureBundle in app/AppKernel.php.

```
// ...
public function registerBundles()
{
    $bundles = array(
        // ...
        new Funddy\Bundle\FixtureBundle\FunddyFixtureBundle()
        // ...
    );
    // ...
}
```

Usage
-----

[](#usage)

Create your fixture definition

```
