PHPackages                             jupeter/doctrine-dump-fixtures-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. [Database &amp; ORM](/categories/database)
4. /
5. jupeter/doctrine-dump-fixtures-bundle

ActiveSymfony-bundle[Database &amp; ORM](/categories/database)

jupeter/doctrine-dump-fixtures-bundle
=====================================

Symfony DoctrineDumpFixturesBundle

1.1(9y ago)83.6k2[2 issues](https://github.com/jupeter/DoctrineDumpFixturesBundle/issues)MITPHPPHP &gt;=5.3.2

Since Jan 26Pushed 9y ago1 watchersCompare

[ Source](https://github.com/jupeter/DoctrineDumpFixturesBundle)[ Packagist](https://packagist.org/packages/jupeter/doctrine-dump-fixtures-bundle)[ RSS](/packages/jupeter-doctrine-dump-fixtures-bundle/feed)WikiDiscussions master Synced 3w ago

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

DoctrineDumpFixturesBundle
==========================

[](#doctrinedumpfixturesbundle)

Bundle for Symfony 3, with you can dump database data into fixtures.

Dump Fixtures are used to dump database data into fixtures file.

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

[](#setup-and-configuration)

Doctrine Dump fixtures for Symfony are maintained in the `DoctrineDumpFixturesBundle`*. The bundle uses external `Doctrine Data Fixtures`* library.

Follow these steps to install the bundle and the library in the Symfony Standard edition. Run command in your project diretory:

```
$ composer require jupeter/doctrine-dump-fixtures-bundle
```

Finally, register the Bundle `DoctrineDumpFixturesBundle` in `app/AppKernel.php`.

```
// ...
public function registerBundles()
{
    $bundles = array(
        // ...
        new TeamLab\Bundle\FixturesBundle\DoctrineDumpFixturesBundle(),
        // ...
    );
    // ...
}
```

Configuration
-------------

[](#configuration)

To dump entity data, you need setup annotation for entity:

```
namespace AppBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use TeamLab\Bundle\FixturesBundle\Mapping as Dump;  # use Annotation

/**
 * @ORM\Entity
 * @Dump\Entity # configure with entities should be dumped
  */
class Offers
{
     // ...

     /**
      * @ORM\Column(type="string")
      * @Dump\Column # configure with columns should be dumped
      */
     private function $name;

     // ...
}
```

Dump existing data into fixtures
--------------------------------

[](#dump-existing-data-into-fixtures)

To dump all data from database to Fixtures, run command:

```
$ ./bin/console doctrine:fixtures:dump
```

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 94.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

3438d ago

Major Versions

0.5 → 1.02017-01-26

### Community

Maintainers

![](https://www.gravatar.com/avatar/4621d6aac5d943c0f3669583d6584d86968826ed697bfb9500b55020716c6482?d=identicon)[jupeter](/maintainers/jupeter)

---

Top Contributors

[![piotrplenik](https://avatars.githubusercontent.com/u/674766?v=4)](https://github.com/piotrplenik "piotrplenik (18 commits)")[![lologhi](https://avatars.githubusercontent.com/u/81240?v=4)](https://github.com/lologhi "lologhi (1 commits)")

---

Tags

persistenceFixture

### Embed Badge

![Health badge](/badges/jupeter-doctrine-dump-fixtures-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/jupeter-doctrine-dump-fixtures-bundle/health.svg)](https://phpackages.com/packages/jupeter-doctrine-dump-fixtures-bundle)
```

###  Alternatives

[doctrine/doctrine-fixtures-bundle

Symfony DoctrineFixturesBundle

2.5k111.1M920](/packages/doctrine-doctrine-fixtures-bundle)[doctrine/doctrine-bundle

Symfony DoctrineBundle

4.8k249.9M3.9k](/packages/doctrine-doctrine-bundle)[doctrine/persistence

The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.

4.0k298.2M962](/packages/doctrine-persistence)[mongodb/mongodb

MongoDB driver library

1.6k66.6M593](/packages/mongodb-mongodb)[propel/propel

Propel2 is an open-source Object-Relational Mapping (ORM) for PHP.

1.3k5.5M112](/packages/propel-propel)[theofidry/alice-data-fixtures

Nelmio alice extension to persist the loaded fixtures.

32329.4M88](/packages/theofidry-alice-data-fixtures)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
