mrandmrssmith/idempotent-consumer-doctrine-persistence-bundle

1.0.1 2024-09-19 09:58 UTC

This package is auto-updated.

Last update: 2025-03-19 11:07:02 UTC


README

This bundle provide persistence layer for idempotent consumer using doctrine

Installation

Add this package to your project

composer require mrandmrssmith/idempotent-consumer-doctrine-persistence-bundle

Usage

  1. Configure doctrine
    • in your doctrine.yaml add mapping for this bundle
          mms_idempotent_consumer_doctrine_persistence_bundle:
              is_bundle: false
              type: annotation
              dir: '%kernel.project_dir%/vendor/mrandmrssmith/idempotent-consumer-doctrine-persistence-bundle/src/Entity'
              prefix: 'MrAndMrsSmith\IdempotentConsumerDoctrinePersistenceBundle\Entity'
              alias: IdempotentConsumerDoctrinePersistenceBundle
  1. Configure your migrations in doctrine_migrations.yaml to migration_paths add:
        'MrAndMrsSmith\IdempotentConsumerDoctrinePersistenceBundle\Persistence\Migrations': '%kernel.project_dir%/vendor/mrandmrssmith/idempotent-consumer-doctrine-persistence-bundle/src/Persistence/Migrations'
  1. Run migrations as usual
  bin/console doctrine:migrations:migrate