From 65a03040f9fbe7e6ecff7fec882119684fc13ea4 Mon Sep 17 00:00:00 2001 From: Gustavo Karkow <14905932+karkowg@users.noreply.github.com> Date: Wed, 22 May 2024 17:06:25 -0400 Subject: [PATCH 1/2] chore: require symfony/process v6 or v7 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4a68b25..abfe196 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ ], "require": { "php": "^8.0", - "symfony/process": "^6.0" + "symfony/process": "^6.0|^7.0" }, "require-dev": { "pestphp/pest": "^1.21", From 5ef4fce489a9f0bf62d3bb78f7e6ef5cb93a1f35 Mon Sep 17 00:00:00 2001 From: Gustavo Karkow <14905932+karkowg@users.noreply.github.com> Date: Wed, 22 May 2024 17:11:33 -0400 Subject: [PATCH 2/2] chore: run tests against php 8.2 and 8.3 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6e751e3..c9cfa0b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest, macos-latest ] - php: [ 8.0, 8.1 ] + php: [ 8.0, 8.1, 8.2, 8.3 ] dependency-version: [ prefer-lowest, prefer-stable ] name: Tests P${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}