From ca3e3f19d976d1bc7fdf2c12ea8d0e7c28e9ea2b Mon Sep 17 00:00:00 2001 From: Patrik Foldes Date: Wed, 6 Nov 2024 20:29:40 +0300 Subject: [PATCH] Support for 2.18.2 --- README.md | 1 + composer.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c8379ff..a0d3555 100644 --- a/README.md +++ b/README.md @@ -226,6 +226,7 @@ If you choose this path, you can install this package in the following steps: ``` Then depending on the version of doctrine/orm you want to use: +- run `composer require sspat/doctrine-nullable-embeddables:v2.18.2 doctrine/orm:2.18.2` - run `composer require sspat/doctrine-nullable-embeddables:v2.18.1 doctrine/orm:2.18.1` - run `composer require sspat/doctrine-nullable-embeddables:v2.18.0 doctrine/orm:2.18.0` - run `composer require sspat/doctrine-nullable-embeddables:v2.17.5 doctrine/orm:2.17.5` diff --git a/composer.json b/composer.json index 49e7c78..054e348 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "require": { "php": "^7.4|^8.0", "cweagans/composer-patches": "^1.6|^1.7", - "doctrine/orm": "2.18.1" + "doctrine/orm": "2.18.2" }, "require-dev": { "phpunit/phpunit": "^9.5" @@ -31,7 +31,7 @@ "extra": { "patches": { "doctrine/orm": { - "Allow nullable embeddables": "https://raw.githubusercontent.com/sspat/doctrine-nullable-embeddables/v2.18.1/patch/nullable_embeddables.patch" + "Allow nullable embeddables": "https://raw.githubusercontent.com/sspat/doctrine-nullable-embeddables/v2.18.2/patch/nullable_embeddables.patch" } } },