From bbc4c007627e4a7d548cbdab808b5bfae5531fdc Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 31 Jan 2023 13:37:12 +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 28d951d..d30c46f 100644 --- a/composer.json +++ b/composer.json @@ -22,11 +22,11 @@ ], "require": { "php": "^7.4 || ^8.0 || ^8.1", - "illuminate/support": "^6 || ^7 || ^8 || ^9" + "illuminate/support": "^6 || ^7 || ^8 || ^9|^10.0" }, "require-dev": { - "orchestra/testbench": "^4 || ^5 || ^6 || ^7", - "rector/rector": "0.13.x-dev", + "orchestra/testbench": "^4 || ^5 || ^6 || ^7|^8.0", + "rector/rector": "0.13.x-dev|^0.15", "tightenco/tlint": "dev-main" }, "minimum-stability": "dev", From 7ddf9f55f8be4c1e0c3e7542c0af57985a7c996b Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 31 Jan 2023 13:37:12 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 10 --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cc46654..b958b4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,14 @@ jobs: strategy: matrix: - laravel: [^6, ^7, ^8, ^9] + laravel: [^6, ^7, ^8, ^9, 10.0] php: [7.4, 8.0, 8.1] exclude: + - laravel: 10.0 + php: 7.4 + - laravel: 10.0 + php: 8.0 - laravel: ^6 php: 8.1 - laravel: ^7