Skip to content

Commit

Permalink
Merge pull request #2757 from acrobat/bump-doctrine-fixturesbundle
Browse files Browse the repository at this point in the history
[AllBundles] Bump doctrine/fixture-bundle to support symfony 5
  • Loading branch information
acrobat committed Oct 2, 2020
2 parents 0ffb73e + 1cd31b8 commit 4c5b821
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -63,7 +63,7 @@
"kunstmaan/google-api-custom": "~1.0",
"ddeboer/data-import-bundle": "~0.1",
"gedmo/doctrine-extensions": "^2.4.34",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"stof/doctrine-extensions-bundle": "~1.1",
"liip/imagine-bundle": "^2.2",
"imagine/imagine": "~0.6",
Expand Down
2 changes: 1 addition & 1 deletion src/Kunstmaan/FixturesBundle/composer.json
Expand Up @@ -19,7 +19,7 @@
"minimum-stability": "dev",
"require": {
"php": "^7.2",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"fzaninotto/faker": "^1.6",
"kunstmaan/admin-bundle": "~5.2",
"kunstmaan/media-bundle": "^5.7",
Expand Down
12 changes: 12 additions & 0 deletions src/Kunstmaan/GeneratorBundle/Resources/config/services.yml
Expand Up @@ -56,3 +56,15 @@ services:
arguments: ['%kernel.project_dir%']
tags:
- { name: console.command }

Kunstmaan\GeneratorBundle\DataFixtures\ORM\UserFixtures:
tags:
- { name: doctrine.fixture.orm }

Kunstmaan\GeneratorBundle\DataFixtures\ORM\RoleFixtures:
tags:
- { name: doctrine.fixture.orm }

Kunstmaan\GeneratorBundle\DataFixtures\ORM\GroupFixtures:
tags:
- { name: doctrine.fixture.orm }
4 changes: 4 additions & 0 deletions src/Kunstmaan/MediaBundle/Resources/config/services.yml
Expand Up @@ -168,3 +168,7 @@ services:
- { name: doctrine.event_subscriber, connection: default }
calls:
- [ setAnnotationReader, [ "@annotation_reader" ] ]

Kunstmaan\MediaBundle\DataFixtures\ORM\FolderFixtures:
tags:
- { name: doctrine.fixture.orm }
4 changes: 4 additions & 0 deletions src/Kunstmaan/TranslatorBundle/Resources/config/services.yml
Expand Up @@ -125,3 +125,7 @@ services:
- '@router'
tags:
- { name: kunstmaan_admin.toolbar_collector, template: '@KunstmaanTranslator/Toolbar/translations.html.twig', id: kuma_translation}

Kunstmaan\TranslatorBundle\DataFixtures\ORM\TranslationFixtures:
tags:
- { name: doctrine.fixture.orm }

0 comments on commit 4c5b821

Please sign in to comment.