diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 063f00f..f16bc8e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,14 +9,14 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.2, 8.1, 8.0] - laravel: [9.*, 8.*] + php: [8.2, 8.1] + laravel: [10.*, 9.*] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* - - laravel: 8.* - testbench: ^6.23 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ba2aae..2545351 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to `eloquent-sortable` will be documented in this file +## 4.1.0 - 2023-01-24 + +- add support for Laravel 10 +- drop support for Laravel 8 +- drop support for PHP 8.0 + ## 4.0.1 - 2022-01-21 - support Laravel 9 diff --git a/composer.json b/composer.json index 5b151ff..ba642c0 100644 --- a/composer.json +++ b/composer.json @@ -19,15 +19,15 @@ ], "license": "MIT", "require": { - "php": "^8.0", - "illuminate/database": "^8.0|^9.0", - "illuminate/support": "^8.0|^9.0", + "php": "^8.1", + "illuminate/database": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0", "nesbot/carbon": "^2.63", "spatie/laravel-package-tools": "^1.9" }, "require-dev": { "phpunit/phpunit" : "^9.5", - "orchestra/testbench": "^6.0|^7.0" + "orchestra/testbench": "^7.0|^8.0" }, "autoload": { "psr-4": {