Skip to content

Commit c37a0f3

Browse files
authored
Support for Laravel 10 (#35)
1 parent fee2068 commit c37a0f3

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
matrix:
1111
php: [7.3, 7.4, '8.0', 8.1]
1212
lib:
13+
- { laravel: ^10.0 }
1314
- { laravel: ^9.0 }
1415
- { laravel: ^8.0 }
1516
- { laravel: ^7.0 }
@@ -19,7 +20,10 @@ jobs:
1920
- { php: 8.1, lib: { laravel: ^7.0 } }
2021
- { php: 8.1, lib: { laravel: ^6.0 } }
2122
- { php: 8.1, lib: { laravel: ^6.0, flags: --prefer-lowest } }
23+
- { php: 8.0, lib: { laravel: ^10.0 } }
24+
- { php: 7.4, lib: { laravel: ^10.0 } }
2225
- { php: 7.4, lib: { laravel: ^9.0 } }
26+
- { php: 7.3, lib: { laravel: ^10.0 } }
2327
- { php: 7.3, lib: { laravel: ^9.0 } }
2428

2529
steps:

.scrutinizer.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ filter:
99

1010
build:
1111

12+
image: default-bionic
13+
1214
nodes:
1315
analysis:
1416
tests:
1517
override:
1618
- php-scrutinizer-run
1719

1820
environment:
19-
php: '7.4'
21+
php: '8.1.8'
2022

2123
dependencies:
2224
before:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Rapid pagination without using OFFSET
2323
## Requirements
2424

2525
- PHP: `^7.3 || ^8.0`
26-
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0`
26+
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0`
2727
- [lampager/lampager](https://github.com/lampager/lampager): `^0.4`
2828

2929
## Installing

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"php": "^7.3 || ^8.0",
2525
"ext-json": "*",
2626
"lampager/lampager": "^0.4",
27-
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0",
28-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
29-
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0"
27+
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
28+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
29+
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
3030
},
3131
"require-dev": {
3232
"orchestra/testbench": "*",

0 commit comments

Comments
 (0)