From 3a0e3c3cc5a609731f5d18127d4e19b903ac0d0b Mon Sep 17 00:00:00 2001 From: Thom den Boer Date: Thu, 25 Apr 2024 10:44:41 +0200 Subject: [PATCH] Dropped support voor PHP 8.0. --- .github/workflows/run-tests.yml | 12 +++++++----- composer.json | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ea68144..2b5b858 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,17 +13,19 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.0, 8.1] - laravel: [8.*, 9.*] + php: [8.1, 8.2, 8.3] + laravel: [9.*, 10.*, 11.*] stability: [prefer-stable] include: - - laravel: 8.* - testbench: 6.* - laravel: 9.* testbench: 7.* + - laravel: 10.* + testbench: 8.* + - laravel: 11.* + testbench: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} - + if: steps: - name: Checkout code uses: actions/checkout@v3 diff --git a/composer.json b/composer.json index 090feaa..a9d708a 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "^8.0", + "php": "^8.1", "ext-iconv":"*", "guzzlehttp/guzzle": "^7.5", "illuminate/contracts": "^8.0|^9.0",