From a4b363c77ae3ff378fe89c0ff08e3bd76175f957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mads=20N=C3=B8rgaard?= Date: Thu, 16 Jul 2026 01:43:28 +0200 Subject: [PATCH] Loosen payfast/payfast-common constraint to ^1.4 The exact pin 'v1.4.0' blocks the compatible v1.4.1 release (and any future 1.x patch) from resolving, and forces a conflict for any project that already requires a newer payfast-common. ^1.4 keeps the same minimum while allowing non-breaking updates - the project's own CI already installs v1.4.1, so this matches what is actually tested. --- payfast/composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payfast/composer.json b/payfast/composer.json index cb8473c..dedbb49 100644 --- a/payfast/composer.json +++ b/payfast/composer.json @@ -1,5 +1,5 @@ { "require": { - "payfast/payfast-common": "v1.4.0" + "payfast/payfast-common": "^1.4" } }