Skip to content

Commit 314c28f

Browse files
authored
Support for Laravel 10 (#10)
1 parent 638dc61 commit 314c28f

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/ci.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
@@ -9,7 +9,7 @@ Null Guard for Laravel. Designed for Middleware-based authentication and testing
99
## Requirements
1010

1111
- PHP: `^7.3 || ^8.0`
12-
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0`
12+
- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0`
1313

1414
## Installing
1515

composer.json

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

0 commit comments

Comments
 (0)