From 24a4b46f407ad2fae8609bdfdd3733ca25708611 Mon Sep 17 00:00:00 2001 From: Paul Rijke Date: Mon, 22 Dec 2025 13:39:13 +0100 Subject: [PATCH 1/3] chore: update PHP and development dependencies in composer.json and phpunit.xml.dist --- composer.json | 12 +++++++----- phpunit.xml.dist | 12 ++++++------ phpunit.xml.dist.bak | 23 ----------------------- 3 files changed, 13 insertions(+), 34 deletions(-) delete mode 100644 phpunit.xml.dist.bak diff --git a/composer.json b/composer.json index 13d92a5..650613c 100644 --- a/composer.json +++ b/composer.json @@ -3,13 +3,15 @@ "description": "Typed Array", "type": "library", "require": { - "php": ">=8.0.2", - "symfony/property-access": "^6.0" + "php": "^8.2", + "symfony/property-access": "^6.0 | ^7.0" }, "require-dev": { - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "^3.6", - "phpstan/phpstan": "^1.0" + "phpunit/phpunit": "^12.0", + "squizlabs/php_codesniffer": "^4.0", + "phpstan/phpstan": "^2.0", + "doctrine/deprecations": "^1.1", + "doctrine/dbal": "^4.4" }, "suggest": { "doctrine/dbal": "For using type_array directly with Doctrine" diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 6f75377..508f20d 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,13 +1,13 @@ - - - - ./src - - + tests + + + ./src + + diff --git a/phpunit.xml.dist.bak b/phpunit.xml.dist.bak deleted file mode 100644 index 589a7cf..0000000 --- a/phpunit.xml.dist.bak +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - tests - - - - - - ./src - - - From 6799d025944e30511eb1cc253f6cd7a02850a00f Mon Sep 17 00:00:00 2001 From: Paul Rijke Date: Mon, 22 Dec 2025 13:39:13 +0100 Subject: [PATCH 2/3] chore: update PHP and development dependencies in composer.json and phpunit.xml.dist --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 650613c..741729d 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "symfony/property-access": "^6.0 | ^7.0" }, "require-dev": { - "phpunit/phpunit": "^12.0", + "phpunit/phpunit": "^11.0", "squizlabs/php_codesniffer": "^4.0", "phpstan/phpstan": "^2.0", "doctrine/deprecations": "^1.1", From 4811c05b0020f538c6a2972761ac67e6ff383509 Mon Sep 17 00:00:00 2001 From: Paul Rijke Date: Tue, 30 Dec 2025 12:24:24 +0100 Subject: [PATCH 3/3] Fix logical OR operator in composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 741729d..6ba9972 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "type": "library", "require": { "php": "^8.2", - "symfony/property-access": "^6.0 | ^7.0" + "symfony/property-access": "^6.0 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^11.0",