From f9ee5ed0425f1de73d2b9d91e5fb5a09f8bead44 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 31 Jan 2023 23:42:36 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 10 --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 305a86c..be69f9e 100644 --- a/composer.json +++ b/composer.json @@ -24,13 +24,13 @@ ], "require": { "php": "^7.2|^8.0", - "illuminate/contracts": "~6.0|~7.0|~8.0", - "illuminate/database": "~6.0|~7.0|~8.0", - "illuminate/support": "~6.0|~7.0|~8.0", - "laravel/scout": "~7.0|~8.0" + "illuminate/contracts": "~6.0|~7.0|~8.0|^10.0", + "illuminate/database": "~6.0|~7.0|~8.0|^10.0", + "illuminate/support": "~6.0|~7.0|~8.0|^10.0", + "laravel/scout": "~7.0|~8.0|^9.8" }, "require-dev": { - "phpunit/phpunit": "^8.3", + "phpunit/phpunit": "^8.3|^9.5.10", "mockery/mockery": "^1.2.3" }, "autoload": { From 3d73224b3703c28359546c9e1059722f41045385 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 31 Jan 2023 23:42:36 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 10 --- .github/workflows/tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3991ffa..e887a42 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,10 +13,16 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4] - laravel: [^6.0, ^7.0, ^8.0] + php: [7.2, 7.3, 7.4, 8.1] + laravel: [^6.0, ^7.0, ^8.0, 10.0] scout: [^7.0, ^8.0] exclude: + - php: 7.2 + laravel: 10.0 + - php: 7.3 + laravel: 10.0 + - php: 7.4 + laravel: 10.0 - php: 7.2 laravel: ^8.0 - laravel: ^8.0