data-fixtures icon indicating copy to clipboard operation
data-fixtures copied to clipboard

Doctrine2 ORM Data Fixtures Extensions

Results 53 data-fixtures issues
Sort by recently updated
recently updated
newest added

When running the command ```doctrine:fixtures:load``` we get e PHP notice in the data fixtures line $entity_manager->flush(); The notice is as follows: [Symfony\Component\Debug\Exception\ContextErrorException] Notice: Undefined index: 00000000008d0501000000004e061b78 The value of index...

I have this issue today at `doctrine/data-fixtures v1.3.2 `, what I did wrong? Order.orm.xml ``` ``` OrderReview.orm.xmln ``` ``` Report.orm.xml ``` ``` the the result table orders are following, but...

Question

Newer versions od doctrine deprecated doctrine/common package. Please remove this dependency and depend on new doctrine packages as needed.

Did a clean clone and ran tests, got bunch of errors: ``` $ php7.1 vendor/bin/phpunit PHPUnit 7.2.4 by Sebastian Bergmann and contributors. Warning - The configuration file did not pass...

I have a class that has two identifier fields (a numeric id and a user ManyToOne) so that every user has their own sequence of numeric ids. This causes failures...

Improvement

During doctrine:fixtures:load, views mapped to entities are not excluded from purge. Could you exclude tables/views that mach doctrine.dbal.schema_filter from the purge or add a configuration entry for table/view names that...

Hello! Here is my use case: I want to pass a list of references from AFixture to BFixture. For now I'm forced to make a loop: ```php // in AFixture.php...

Improvement

We are using the MongoDBPurger but we found that adding `authorization: enabled` to `/etc/mongodb.conf` causes it to fail, due to: https://jira.mongodb.org/browse/PHPLIB-277 I thought another way to avoid ^^ is to...

I use DataFixtures for several reasons, but they usually group into one of the following cases: a) creating data that is required for my application, when a fresh new installation...

Improvement

What I found out by trying is that setReference/getRefrence only support to store database entities. This should be improved that it is clear before trying. ### Current behaviour: * passing...