From 0e2dcb65f9512f23131adf5eeb7eaaf6a1a1308f Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 2 Feb 2022 19:56:14 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 9 --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 2ad0991..468c24e 100644 --- a/composer.json +++ b/composer.json @@ -9,13 +9,13 @@ } ], "require": { - "php": "^7.4|^8.0", - "illuminate/database": "^8.0", - "illuminate/events": "^8.0" + "php": "^8.0", + "illuminate/database": "^9.0", + "illuminate/events": "^9.0" }, "require-dev": { - "orchestra/testbench": "^6.0", - "phpunit/phpunit": "^8.5" + "orchestra/testbench": "^7.0", + "phpunit/phpunit": "^9.5.10" }, "autoload": { "psr-4": { From 722c7ab365b8315a3b0243130f56d88af3a74c11 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 2 Feb 2022 19:56:14 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 9 --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index afbe7f8..f4a2df8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,12 +9,12 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4, 8.0] - laravel: [8.*] + php: [8.0] + laravel: [9.*] dependency-version: [prefer-stable] include: - - laravel: 8.* - testbench: 6.* + - laravel: 9.* + testbench: 7.* name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }}