From ec76eb314d01ebfa02fe58a8356ac8093cf52926 Mon Sep 17 00:00:00 2001 From: Andrew Bashtannik Date: Mon, 20 Feb 2023 10:20:24 +0200 Subject: [PATCH] Support Laravel 10 (#107) Laravel 10 has min. php version supported = 8.1 --- .github/workflows/test.yml | 8 ++++---- composer.json | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb5d735..2e43614 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,12 +13,12 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.0] - laravel: [9.*] + php: [8.1] + laravel: [10.*] dependency-version: [prefer-lowest, prefer-stable] include: - - laravel: 9.* - testbench: 7.* + - laravel: 10.* + testbench: 8.* name: P ${{ matrix.php }} - L ${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index b35719c..17d8fb0 100644 --- a/composer.json +++ b/composer.json @@ -17,18 +17,18 @@ "settings" ], "require": { - "php": "^8.0", - "illuminate/config": "^9.0", - "illuminate/database": "^9.0", - "illuminate/support": "^9.0", - "illuminate/console": "^9.0", - "illuminate/filesystem": "^9.0", - "illuminate/cache": "^9.0", + "php": "^8.1", + "illuminate/config": "^10.0", + "illuminate/database": "^10.0", + "illuminate/support": "^10.0", + "illuminate/console": "^10.0", + "illuminate/filesystem": "^10.0", + "illuminate/cache": "^10.0", "ext-json": "*" }, "require-dev": { "phpunit/phpunit": "^8.0|^9.0", - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^8.0", "friendsofphp/php-cs-fixer": "^3.6", "josiasmontag/laravel-redis-mock": "^1.2" },