Skip to content

Commit f4b2c6c

Browse files
authored
Support for Laravel 10 (#25)
1 parent 2a50ebd commit f4b2c6c

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,20 @@ 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 }
16-
- { laravel: ^6.9 }
17-
- { laravel: ^6.9, flags: --prefer-lowest }
17+
- { laravel: ^6.0 }
18+
- { laravel: ^6.0, flags: --prefer-lowest }
1819
exclude:
1920
- { php: 8.1, lib: { laravel: ^7.0 } }
20-
- { php: 8.1, lib: { laravel: ^6.9 } }
21-
- { php: 8.1, lib: { laravel: ^6.9, flags: --prefer-lowest } }
21+
- { php: 8.1, lib: { laravel: ^6.0 } }
22+
- { 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
@@ -5,7 +5,7 @@ Guarantee database stickiness over the same user's consecutive requests.
55
## Requirements
66

77
- PHP: `^7.3 || ^8.0`
8-
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0`
8+
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0`
99

1010
## Installing
1111

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
"require": {
2424
"php": "^7.3 || ^8.0",
2525
"ext-pdo": "*",
26-
"illuminate/container": "^6.0 || ^7.0 || ^8.0 || ^9.0",
27-
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0",
28-
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0",
29-
"illuminate/queue": "^6.0 || ^7.0 || ^8.0 || ^9.0",
30-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0"
26+
"illuminate/container": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
27+
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
28+
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
29+
"illuminate/queue": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
30+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
3131
},
3232
"require-dev": {
3333
"orchestra/testbench": "*",

0 commit comments

Comments
 (0)