From 72d9199098eaf4537dfb5a0d0a051bcc911bdce3 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 1 Feb 2023 23:40:21 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 10 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 49ad54c..94a91bb 100644 --- a/composer.json +++ b/composer.json @@ -4,12 +4,12 @@ "type": "library", "license": "MIT", "require": { - "php": "^8.0", + "php": "^8.1", "ext-json": "*", - "illuminate/support": "^9.0" + "illuminate/support": "^10.0" }, "require-dev": { - "orchestra/testbench": "^7.0" + "orchestra/testbench": "^8.0" }, "autoload": { "psr-4": { From 87cd69e6dc1d996e0cdee74425ab5342117bba54 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 1 Feb 2023 23:40:21 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 10 --- .github/workflows/run-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c247891..5616e88 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [8.1, 8.0] - laravel: [9.*] + php: [8.1] + laravel: [10.*] dependency-version: [prefer-lowest, prefer-stable] include: - - laravel: 9.* - testbench: 7.* + - laravel: 10.* + testbench: 8.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}