From 4d5b9a0c786de6d985369940637d5fcbf684233f Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 3 Feb 2023 23:49:24 +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 b8b56c5..377be58 100755 --- a/composer.json +++ b/composer.json @@ -20,11 +20,11 @@ ], "require": { "php": "^7.3|^8.0", - "illuminate/routing": "^7.0|^8.0|^9.0", - "illuminate/support": "^7.0|^8.0|^9.0" + "illuminate/routing": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "5.*|6.*|^7.0", + "orchestra/testbench": "5.*|6.*|^7.0|^8.0", "phpunit/phpunit": "^9.1" }, "autoload": { From 8a1bd91d59b39eb084e14d75ca824b34d2568c01 Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 3 Feb 2023 23:49:24 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 10 --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 186a2d5..23fcc56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,14 @@ jobs: matrix: os: [ubuntu-latest] php: [ 7.3, 7.4, '8.0', 8.1 ] - laravel: [ 7, 8, 9 ] + laravel: [ 7, 8, 9 , 10] exclude: + - php: 7.3 + laravel: 10 + - php: 7.4 + laravel: 10 + - php: 8.0 + laravel: 10 - php: 7.3 laravel: 9 - php: 7.4