Skip to content

Commit 5cdcd8c

Browse files
authored
Support for Laravel 10 (#7)
1 parent 0471d44 commit 5cdcd8c

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
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,9 +20,11 @@ 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 } }
24-
2528
steps:
2629
- uses: actions/checkout@v2
2730

.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
@@ -7,7 +7,7 @@ The idea is from: [[Proposal] Local query scopes as classes · Issue #636 · lar
77
## Requirements
88

99
- PHP: `^7.3 || ^8.0`
10-
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0`
10+
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0`
1111

1212
## Installing
1313

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
},
2323
"require": {
2424
"php": "^7.3 || ^8.0",
25-
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0",
26-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0"
25+
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
26+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
2727
},
2828
"require-dev": {
2929
"orchestra/testbench": "*",

0 commit comments

Comments
 (0)