From 142003431aa29fac46783421abf9f109a4720589 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Mon, 5 May 2025 16:17:02 +0200 Subject: [PATCH 1/4] Add PHP 8.5 to testing workflow --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b41e1d..aa0b04c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['8.1', '8.2', '8.3', '8.4'] + php: ['8.1', '8.2', '8.3', '8.4', '8.5'] name: Testing on PHP ${{ matrix.php }} steps: - name: Checkout From 227d69c8c97b90cae17def166a7de48c611d5295 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Sat, 6 Sep 2025 08:19:45 +0200 Subject: [PATCH 2/4] Trigger Workflow From 330990cd7e48cd09eaf8364f5db4184862b56193 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Sat, 6 Sep 2025 08:24:59 +0200 Subject: [PATCH 3/4] Remove -q flag from composer installation --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa0b04c..bee6a2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: tools: composer - name: Install PHP dependencies - run: composer install -q + run: composer install - name: Run phpunit run: vendor/bin/phpunit From 148c5ceb05b93533af6b8be170fbe99e4beced20 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Sat, 6 Sep 2025 08:26:33 +0200 Subject: [PATCH 4/4] Enable orchestra/testbench 10 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c25b483..4a13716 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ "require-dev": { "ext-fileinfo": "*", "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0", - "orchestra/testbench": "^8.18 || ^9.9" + "orchestra/testbench": "^8.18 || ^9.9 || ^10.6" }, "autoload": { "psr-4": {