From e0f1f64be8dbcfedce70bdc812091b825c758da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Wed, 10 Nov 2021 00:29:43 +0100 Subject: [PATCH] fix(doctrine): compatibility with DBAL 3 --- composer.json | 1 - tests/Fixtures/TestBundle/Entity/Dummy.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d6b670600bd..04fc591f3ff 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,6 @@ "doctrine/cache": "^1.11", "doctrine/common": "^2.11 || ^3.0", "doctrine/data-fixtures": "^1.2.2", - "doctrine/dbal": "^2.6", "doctrine/doctrine-bundle": "^1.12 || ^2.0", "doctrine/mongodb-odm": "^2.2", "doctrine/mongodb-odm-bundle": "^4.0", diff --git a/tests/Fixtures/TestBundle/Entity/Dummy.php b/tests/Fixtures/TestBundle/Entity/Dummy.php index 408b9879712..986fe8c5d5a 100644 --- a/tests/Fixtures/TestBundle/Entity/Dummy.php +++ b/tests/Fixtures/TestBundle/Entity/Dummy.php @@ -135,7 +135,7 @@ class Dummy /** * @var array serialize data * - * @ORM\Column(type="json_array", nullable=true) + * @ORM\Column(type="json", nullable=true) */ public $jsonData;