From 5dbf399e4131f0ffc085ed9fb7433d7f3021905e Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 2 Feb 2023 07:55:03 +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 f0a763a..74c87e7 100644 --- a/composer.json +++ b/composer.json @@ -23,13 +23,13 @@ "source": "https://github.com/hedii/artisan-log-cleaner" }, "require": { - "php": "^8.0", - "illuminate/console": "^9.0", - "illuminate/filesystem": "^9.0", - "illuminate/support": "^9.0" + "php": "^8.1", + "illuminate/console": "^10.0", + "illuminate/filesystem": "^10.0", + "illuminate/support": "^10.0" }, "require-dev": { - "orchestra/testbench": "^7.0" + "orchestra/testbench": "^8.0" }, "autoload": { "psr-4": { From abdede6db85b48d52b7ae90810857978e2f4d1f1 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 2 Feb 2023 07:55:03 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 10 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d9769b..d3bb9f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: [ '8.0', '8.1' ] + php-versions: [8.1] name: Testing on PHP ${{ matrix.php-versions }} steps: - name: Checkout