Skip to content

Commit

Permalink
Laravel 10 support (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
Okipa authored Jan 23, 2023
1 parent d06c32b commit 80f43e4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 80f43e4

Please sign in to comment.