long-running/doctrine-orm

1.1.0 2021-12-18 08:40 UTC

This package is auto-updated.

Last update: 2024-04-23 15:16:38 UTC


README

This is a read only split from the LongRunning mono repository.

If you want to make changes, please create a pull request there.

This packages requires Doctrine ORM 2.7 or higher.

Installation

composer require long-running/doctrine-orm

Symfony

If you are using Symfony, make sure to install the DoctrineBundle.

composer require doctrine/doctrine-bundle

Then register the bundle:

<?php
// config/bundles.php

return [
    // ...
    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
    LongRunning\Core\Bundle\LongRunningBundle::class => ['all' => true],
    LongRunning\DoctrineORM\Bundle\LongRunningDoctrineORMBundle::class => ['all' => true],
];