From ae457dfc393740e2b8454be5c6d496ac7e6d1357 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sun, 30 Aug 2026 15:19:39 +0200 Subject: [PATCH] fix(composer): allow brick/math 0.20 brick/math ships a new minor release every few weeks, and every package of the stack has to be bumped in lockstep because the one lagging behind caps brick/math for the whole dependency tree. Declaring the next minor ahead of time removes one round of that churn. The range only gains 0.20.x. Every version accepted before is still accepted, and 0.21 and above stay excluded so a breaking release cannot slip in unnoticed. --- composer.json | 2 +- src/Library/composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index adfc43ded..15871043d 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ "require": { "php": ">=8.2", "ext-openssl": "*", - "brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19", + "brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19|^0.20", "psr/clock": "^1.0", "psr/event-dispatcher": "^1.0", "spomky-labs/pki-framework": "^1.2.1", diff --git a/src/Library/composer.json b/src/Library/composer.json index 31a78dbcc..89c23904d 100644 --- a/src/Library/composer.json +++ b/src/Library/composer.json @@ -39,7 +39,7 @@ }, "require": { "php": ">=8.2", - "brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19", + "brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19|^0.20", "psr/clock": "^1.0", "spomky-labs/pki-framework": "^1.2.1", "symfony/deprecation-contracts": "^2.5|^3.0"