Skip to content

Commit

Permalink
Add Laravel 10 support (#120)
Browse files Browse the repository at this point in the history
* Added PHP 8.2 support and locked PHP versions to 8.1 and 8.2
* Dropped Laravel 8 support
* Added Laravel 10 support
  • Loading branch information
Okipa authored Jan 21, 2023
1 parent 2a03fbb commit 222906a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.2', '8.1']
laravel: ['10.*', '9.*']
php: ['8.1', '8.2']
laravel: ['9.*', '10.*']
include:
- laravel: '10.*'
testbench: '8.*'
- laravel: '9.*'
testbench: '7.*'
- laravel: '10.*'
testbench: '8.*'

name: P${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this package will be documented in this file.

## [5.3.0](https://github.com/Okipa/laravel-table/compare/5.2.2...5.3.0)

2022-12-23
2023-01-21

* Added PHP 8.2 support and locked PHP versions to 8.1 and 8.2
* Dropped Laravel 8 support
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Found this package helpful? Please consider supporting my work!

| Laravel version | Livewire version | PHP version | Package version |
|------------------------------------------------------|------------------|------------------------------|-----------------|
| ^9.0 | ^10.0 | ^2.0 | 8.1 | 8.2 | ^5.3 |
| ^9.0 | ^10.0 | ^2.0 | 8.1.* | 8.2.* | ^5.3 |
| ^8.0 | ^9.0 | ^2.0 | ^8.1 | ^5.0 |
| ^7.0 | ^8.0 | X | ^7.4 | ^8.0 | ^4.0 |
| ^7.0 | ^8.0 | X | ^7.4 | ^8.0 | ^3.0 |
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
}
],
"require": {
"php": "8.2.*|8.1.*",
"illuminate/contracts": "^10.0|^9.0",
"php": "8.1.*|8.2.*",
"illuminate/contracts": "^9.0|^10.0",
"livewire/livewire": "^2.0"
},
"require-dev": {
Expand All @@ -36,7 +36,7 @@
"laravel/pint": "^1.1",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8.0|^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpmd/phpmd": "^2.11"
},
"autoload": {
Expand Down

0 comments on commit 222906a

Please sign in to comment.