long-running / doctrine-orm
1.1.0
2021-12-18 08:40 UTC
Requires
- php: ^8.0
- doctrine/orm: ^2.7.3
- long-running/core: ^1.0
- psr/log: ^1.1 || ^2.0 || ^3.0
- symfony/yaml: ^5.4 || ^6.0
Requires (Dev)
- doctrine/doctrine-bundle: ^2.5
- phpunit/phpunit: ^9.5.10
- symfony/framework-bundle: ^5.4 || ^6.0
- symfony/phpunit-bridge: ^6.0
Suggests
- doctrine/doctrine-bundle: When using the Symfony bundle
Conflicts
- doctrine/doctrine-bundle: <2.3.1
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], ];