Skip to content

Commit 6608975

Browse files
Laravel 12.x Compatibility (#21)
1 parent ad0a052 commit 6608975

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,13 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: [ubuntu-latest]
18-
php: [8.1, 8.2, 8.3, 8.4]
19-
laravel: [10.*, 11.*]
18+
php: [8.2, 8.3, 8.4]
19+
laravel: ['^11.0', '^12.0']
2020
include:
21-
- laravel: 10.*
22-
testbench: ^8.20
2321
- laravel: 11.*
2422
testbench: ^9.0
25-
exclude:
26-
- php: 8.1
27-
laravel: 11.*
23+
- laravel: 12.*
24+
testbench: ^10.0
2825

2926
name: P${{ matrix.php }} - L${{ matrix.laravel }}
3027

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^8.1",
19-
"illuminate/support": "^10.0 || ^11.0",
20-
"illuminate/console": "^10.0 || ^11.0",
21-
"illuminate/database": "^10.0 || ^11.0",
22-
"illuminate/auth": "^10.0 || ^11.0",
23-
"illuminate/notifications": "^10.0 || ^11.0"
18+
"php": "^8.2",
19+
"illuminate/support": "^11.0 || ^12.0",
20+
"illuminate/console": "^11.0 || ^12.0",
21+
"illuminate/database": "^11.0 || ^12.0",
22+
"illuminate/auth": "^11.0 || ^12.0",
23+
"illuminate/notifications": "^11.0 || ^12.0"
2424
},
2525
"autoload": {
2626
"psr-4": {
@@ -29,7 +29,7 @@
2929
},
3030
"require-dev": {
3131
"mockery/mockery": "^1.4.4",
32-
"orchestra/testbench": "^8.0 || ^9.0",
32+
"orchestra/testbench": "^9.0 || ^10.0",
3333
"pestphp/pest": "^2.0 || ^3.0"
3434
},
3535
"autoload-dev": {

0 commit comments

Comments
 (0)