DoctrineFixturesBundle icon indicating copy to clipboard operation
DoctrineFixturesBundle copied to clipboard

Symfony integration for the doctrine/data-fixtures library

Results 40 DoctrineFixturesBundle issues
Sort by recently updated
recently updated
newest added

I just want to raise up this issue #186 again to know the reason to have the fixtures inside of `src` code the first argument that I saw is: it...

I have strange behaviour when attempting to load fixture group by class name with dependent fixtures. Example: Let's create two fixture classes: ```

There is such an tables architecture: Execute `app:fixtures:load` with purge. When automatically deleting from network_switches_ports, I get an error: ``` [critical] Error thrown while running command "doctrine:fixtures:load". Message: "An exception...

My fixture file looks like: ```php

I have a service like ```yaml App\Doctrine\TableSchema: arguments: $prefix: '%env(string:DATABASE_PREFIX)%' tags: - { name: doctrine.event_subscriber, connection: default } ``` This service works well width the command 'doctrine:schema:create'

Using `LoadDataFixturesDoctrineCommand` it's possible to choose which purger we want to run (`--purger`) but that's unfortunately not the possible with the executor; `ORMExecutor` is hardcoded in the class (https://github.com/doctrine/DoctrineFixturesBundle/blob/3.4.x/Command/LoadDataFixturesDoctrineCommand.php#L154). I...

Since DBAL 3.0 (see https://github.com/doctrine/migrations/pull/1028), the message currently reads for SQLite: > Careful, database "" will be purged. Do you want to continue? (yes/no) Neither @Ocramius (see https://github.com/doctrine/dbal/pull/3606#discussion_r292713610) nor me...

ee5eb61c41572963299c41489b9acc159cbc246d introduced loading fixtures as tagged services, but also removed the option to specify a path to the fixtures classes. this created the requirement of having your fixtures within your...

Hi, I had problem with load fixtures in behat based functional tests. When I load fixture class with Dependency Injection inside it, it works fine, but when I try to...