From 449970b3bdacabe29117f73a280d6cf99518362d Mon Sep 17 00:00:00 2001 From: Frank van Hest Date: Thu, 25 Jan 2024 13:29:48 +0100 Subject: [PATCH] Added support for PHP 8.3 and updated infection and phpstan to their latest version --- .github/workflows/tests.yml | 2 +- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 663a8fc..c5ad101 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2] + php: [8.2, 8.3] composer-flags: [ '' ] stability: ['prefer-stable'] experimental: [false] diff --git a/composer.json b/composer.json index 1497ce6..4fa029f 100644 --- a/composer.json +++ b/composer.json @@ -10,12 +10,12 @@ } ], "require": { - "php": "~8.2.0" + "php": "~8.2.0 || ~8.3.0" }, "require-dev": { "beberlei/assert": "~v3.3", - "infection/infection": "^0.26", - "phpstan/phpstan": "^1.9", + "infection/infection": "^0.27", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5", "roave/security-advisories": "dev-latest" },