Skip to content

Commit dcdfb9e

Browse files
Support laravel 12
1 parent d4b7985 commit dcdfb9e

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Run tests
33
on:
44
push:
55
pull_request:
6-
schedule:
7-
- cron: '0 0 * * *'
86

97
jobs:
108
test:
@@ -13,8 +11,8 @@ jobs:
1311
strategy:
1412
fail-fast: false
1513
matrix:
16-
php: [8.1, 8.2, 8.3]
17-
laravel: [9.*, 10.*, 11.*]
14+
php: [8.1, 8.2, 8.3, 8.4]
15+
laravel: [9.*, 10.*, 11.*, 12.*]
1816
dependency-version: [prefer-lowest, prefer-stable]
1917
include:
2018
- laravel: 9.*
@@ -23,11 +21,15 @@ jobs:
2321
testbench: ^8.20
2422
- laravel: 11.*
2523
testbench: ^9.0
24+
- laravel: 12.*
25+
testbench: ^9.0
2626
exclude:
2727
- php: 8.3
2828
laravel: 9.*
2929
- php: 8.1
3030
laravel: 11.*
31+
- php: 8.1
32+
laravel: 12.*
3133

3234
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3335

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
},
99
"require": {
1010
"php": "^8.1",
11-
"illuminate/support": "^9.0|^10.0|^11.0"
11+
"illuminate/support": ">=9.0"
1212
},
1313
"require-dev": {
14-
"orchestra/testbench": "^7.0|^8.0|^9.0",
14+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
1515
"phpunit/phpunit": "^9.6|^10.5",
16-
"nesbot/carbon": "^2.72.3"
16+
"nesbot/carbon": "^2.72.3|^3.0"
1717
},
1818
"autoload-dev": {
1919
"psr-4": {

0 commit comments

Comments
 (0)