https://github.com/longrunning/doctrine-orm
[READ ONLY] LongRunning Doctrine ORM
https://github.com/longrunning/doctrine-orm
Last synced: 4 months ago
JSON representation
[READ ONLY] LongRunning Doctrine ORM
- Host: GitHub
- URL: https://github.com/longrunning/doctrine-orm
- Owner: LongRunning
- License: mit
- Created: 2020-12-01T19:05:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-12-22T08:07:19.000Z (about 4 years ago)
- Last Synced: 2025-09-22T05:25:34.616Z (5 months ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LongRunning Doctrine ORM
This is a read only split from the [LongRunning](https://github.com/LongRunning/LongRunning) mono repository.
If you want to make changes, please create a pull request [there](https://github.com/LongRunning/LongRunning/pulls).
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](https://github.com/doctrine/DoctrineBundle).
```
composer require doctrine/doctrine-bundle
```
Then register the bundle:
```php
['all' => true],
LongRunning\Core\Bundle\LongRunningBundle::class => ['all' => true],
LongRunning\DoctrineORM\Bundle\LongRunningDoctrineORMBundle::class => ['all' => true],
];
```