From 598585690f1889ee8f49c78d93a6086adccd0510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksander=20K=C4=85kol?= Date: Mon, 23 Feb 2026 09:06:50 +0100 Subject: [PATCH 1/2] Min payer address length --- src/Model/Fields/Payer/Address.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Fields/Payer/Address.php b/src/Model/Fields/Payer/Address.php index ec4404d..aef6ea6 100644 --- a/src/Model/Fields/Payer/Address.php +++ b/src/Model/Fields/Payer/Address.php @@ -11,6 +11,6 @@ class Address extends Field { protected $name = __CLASS__; protected $type = self::STRING; - protected $minLength = 2; + protected $minLength = 3; protected $maxLength = 255; } From 0e6d2ccc2d776a38d36ad3f77776735fa02ae2da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksander=20K=C4=85kol?= Date: Mon, 23 Feb 2026 09:10:23 +0100 Subject: [PATCH 2/2] fixer --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5dd7fcf..b41ecd1 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "require-dev": { "ext-openssl": "*", "php-parallel-lint/php-parallel-lint": "^1.3.2", - "phpunit/phpunit": "^5.7.27 || ^9.6.10", + "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5 || ^9.5", "psx/cache": "^v1.0.2" }, "autoload": {