From 3e9ac1e6a5864cacb708fb8b93fdf6c1e544b731 Mon Sep 17 00:00:00 2001 From: Patrik Foldes Date: Tue, 3 Nov 2020 19:20:04 +0300 Subject: [PATCH] Added support for Doctrine 2.7.4 --- README.md | 1 + composer.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 82a4240..00080dd 100644 --- a/README.md +++ b/README.md @@ -230,3 +230,4 @@ Then depending on the version of doctrine/orm you want to use: - run `composer require sspat/doctrine-nullable-embeddables:v2.7.1.x-dev doctrine/orm` - run `composer require sspat/doctrine-nullable-embeddables:v2.7.2.x-dev doctrine/orm` - run `composer require sspat/doctrine-nullable-embeddables:v2.7.3.x-dev doctrine/orm` +- run `composer require sspat/doctrine-nullable-embeddables:v2.7.4.x-dev doctrine/orm` diff --git a/composer.json b/composer.json index e42c401..10b9f78 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "require": { "php": "^7.4", "cweagans/composer-patches": "^1.6|^1.7", - "doctrine/orm": "2.7.3" + "doctrine/orm": "2.7.4" }, "require-dev": { "phpunit/phpunit": "^7.5" @@ -31,7 +31,7 @@ "extra": { "patches": { "doctrine/orm": { - "Allow nullable embeddables": "https://raw.githubusercontent.com/sspat/doctrine-nullable-embeddables/v2.7.3/patch/nullable_embeddables.patch" + "Allow nullable embeddables": "https://raw.githubusercontent.com/sspat/doctrine-nullable-embeddables/v2.7.4/patch/nullable_embeddables.patch" } } },