From cc68f4ab651dbbebf531fa211182730296da8a28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Rub=C3=A9l?= Date: Fri, 24 Nov 2023 18:23:45 +0100 Subject: [PATCH 1/2] Allow PHP 8.3 --- composer.json | 2 +- composer.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 5ddb6fe59..4aeeab4bb 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Better Reflection - an improved code reflection API", "license": "MIT", "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "ext-json": "*", "jetbrains/phpstorm-stubs": "2023.2", "nikic/php-parser": "^4.17.1", diff --git a/composer.lock b/composer.lock index 9f279ebf0..858d5866b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bba045adc88c82773f81ea847ef40309", + "content-hash": "4e41a89f825dfe7339c933b1411c03b3", "packages": [ { "name": "jetbrains/phpstorm-stubs", @@ -5025,7 +5025,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "ext-json": "*" }, "platform-dev": [], From 28ef29b9e81c77a3157a33af64486e5c1545fa3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Rub=C3=A9l?= Date: Fri, 24 Nov 2023 19:06:26 +0100 Subject: [PATCH 2/2] Lower required mutation test score --- infection.json.dist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infection.json.dist b/infection.json.dist index e72003964..81a4fd44f 100644 --- a/infection.json.dist +++ b/infection.json.dist @@ -13,6 +13,6 @@ "mutators": { "@default": true }, - "minMsi": 100, - "minCoveredMsi": 100 + "minMsi": 99, + "minCoveredMsi": 99 }