Skip to content

Commit e5b5ee2

Browse files
authored
fix(composer): allow brick/math 0.20 (web-token#718)
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.
1 parent 949247b commit e5b5ee2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"require": {
4949
"php": ">=8.2",
5050
"ext-openssl": "*",
51-
"brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19",
51+
"brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19|^0.20",
5252
"psr/clock": "^1.0",
5353
"psr/event-dispatcher": "^1.0",
5454
"spomky-labs/pki-framework": "^1.2.1",

src/Library/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"require": {
4141
"php": ">=8.2",
42-
"brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19",
42+
"brick/math": "^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18|^0.19|^0.20",
4343
"psr/clock": "^1.0",
4444
"spomky-labs/pki-framework": "^1.2.1",
4545
"symfony/deprecation-contracts": "^2.5|^3.0"

0 commit comments

Comments
 (0)