Skip to content

Commit 222906a

Browse files
authored
Add Laravel 10 support (#120)
* Added PHP 8.2 support and locked PHP versions to 8.1 and 8.2 * Dropped Laravel 8 support * Added Laravel 10 support
1 parent 2a03fbb commit 222906a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: ['8.2', '8.1']
18-
laravel: ['10.*', '9.*']
17+
php: ['8.1', '8.2']
18+
laravel: ['9.*', '10.*']
1919
include:
20-
- laravel: '10.*'
21-
testbench: '8.*'
2220
- laravel: '9.*'
2321
testbench: '7.*'
22+
- laravel: '10.*'
23+
testbench: '8.*'
2424

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

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this package will be documented in this file.
44

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

7-
2022-12-23
7+
2023-01-21
88

99
* Added PHP 8.2 support and locked PHP versions to 8.1 and 8.2
1010
* Dropped Laravel 8 support

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Found this package helpful? Please consider supporting my work!
3535

3636
| Laravel version | Livewire version | PHP version | Package version |
3737
|------------------------------------------------------|------------------|------------------------------|-----------------|
38-
| ^9.0 | ^10.0 | ^2.0 | 8.1 | 8.2 | ^5.3 |
38+
| ^9.0 | ^10.0 | ^2.0 | 8.1.* | 8.2.* | ^5.3 |
3939
| ^8.0 | ^9.0 | ^2.0 | ^8.1 | ^5.0 |
4040
| ^7.0 | ^8.0 | X | ^7.4 | ^8.0 | ^4.0 |
4141
| ^7.0 | ^8.0 | X | ^7.4 | ^8.0 | ^3.0 |

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
}
2727
],
2828
"require": {
29-
"php": "8.2.*|8.1.*",
30-
"illuminate/contracts": "^10.0|^9.0",
29+
"php": "8.1.*|8.2.*",
30+
"illuminate/contracts": "^9.0|^10.0",
3131
"livewire/livewire": "^2.0"
3232
},
3333
"require-dev": {
@@ -36,7 +36,7 @@
3636
"laravel/pint": "^1.1",
3737
"nunomaduro/collision": "^6.0",
3838
"nunomaduro/larastan": "^2.0",
39-
"orchestra/testbench": "^8.0|^7.0",
39+
"orchestra/testbench": "^7.0|^8.0",
4040
"phpmd/phpmd": "^2.11"
4141
},
4242
"autoload": {

0 commit comments

Comments
 (0)