From bd1297f161ebbfdd5967b4bf99eb39dd3d698956 Mon Sep 17 00:00:00 2001 From: Martin Grossmann Date: Mon, 22 Jan 2024 16:00:55 +0100 Subject: [PATCH 1/3] updated infection tool to 0.26.21 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2bc054c..cadc762 100644 --- a/Makefile +++ b/Makefile @@ -104,10 +104,10 @@ tools/deptrac: curl -Ls https://github.com/sensiolabs-de/deptrac/releases/download/1.0.2/deptrac.phar -o tools/deptrac && chmod +x tools/deptrac tools/infection: tools/infection.pubkey - curl -Ls https://github.com/infection/infection/releases/download/0.26.16/infection.phar -o tools/infection && chmod +x tools/infection + curl -Ls https://github.com/infection/infection/releases/download/0.26.21/infection.phar -o tools/infection && chmod +x tools/infection tools/infection.pubkey: - curl -Ls https://github.com/infection/infection/releases/download/0.26.16/infection.phar.pubkey -o tools/infection.pubkey + curl -Ls https://github.com/infection/infection/releases/download/0.26.21/infection.phar.pubkey -o tools/infection.pubkey tools/box: curl -Ls https://github.com/humbug/box/releases/download/3.16.0/box.phar -o tools/box && chmod +x tools/box From 4ad5d41fb2e7655fdfe54a52f39dbe81fd34527b Mon Sep 17 00:00:00 2001 From: Martin Grossmann Date: Mon, 22 Jan 2024 16:04:32 +0100 Subject: [PATCH 2/3] added support for PHP 8.3 --- .github/workflows/build.yml | 4 +++- composer.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d93ff1..1ef124f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,11 +15,13 @@ jobs: name: Build and test strategy: matrix: - php: ['8.1', '8.2'] + php: ['8.1', '8.2', '8.3'] deps: [high] include: - php: '8.2' deps: low + - php: '8.3' + deps: low steps: - uses: actions/checkout@v3 diff --git a/composer.json b/composer.json index 3e674ee..18250b3 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Injects services from a PSR-11 dependency injection container to PHPUnit test cases", "type": "library", "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "phpunit/phpunit": "^9.0", "psr/container": "^1.0 || ^2.0", "zalas/injector": "^2.0" From f674f2a5dd1a0ce44e1a52086d65af42aa29fd44 Mon Sep 17 00:00:00 2001 From: Martin Grossmann Date: Mon, 22 Jan 2024 16:27:52 +0100 Subject: [PATCH 3/3] increased minimal required version zalas/phpunit-doubles --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 18250b3..61c9ea1 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "symfony/http-kernel": "^4.4.12 || ^5.3 || ^6.0", "zalas/phpunit-globals": "^2.0", "symfony/framework-bundle": "^4.4.12 || ^5.3 || ^6.0", - "zalas/phpunit-doubles": "^1.5", + "zalas/phpunit-doubles": "^1.9.2", "phpspec/prophecy": "^1.9", "phpspec/prophecy-phpunit": "^2.0" },