add doctrine/persistence as a dev requirement

This commit is contained in:
Christian Flothmann 2021-01-25 17:41:18 +01:00
parent 4181c431e9
commit 6ea9e4d7ca
2 changed files with 2 additions and 1 deletions

View File

@ -518,7 +518,7 @@ abstract class ControllerTraitTest extends TestCase
public function testGetDoctrine()
{
$doctrine = $this->getMockBuilder(ManagerRegistry::class)->getMock();
$doctrine = $this->createMock(ManagerRegistry::class);
$container = new Container();
$container->set('doctrine', $doctrine);

View File

@ -32,6 +32,7 @@
"require-dev": {
"doctrine/annotations": "^1.10.4",
"doctrine/cache": "~1.0",
"doctrine/persistence": "^1.3",
"paragonie/sodium_compat": "^1.8",
"symfony/asset": "^3.4|^4.0|^5.0",
"symfony/browser-kit": "^4.3|^5.0",