Skip to content

Commit a937bd5

Browse files
authored
Merge pull request #10 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 4c1b6df + fe05855 commit a937bd5

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest]
1919
php: [8.4, 8.3, 8.2]
20-
laravel: ["10.*", "11.*"]
20+
laravel: ['10.*', '11.*', '12.*']
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
2323
- laravel: 10.*
2424
testbench: ^8.0
2525
- laravel: 11.*
2626
testbench: ^9.0
27+
- laravel: 12.*
28+
testbench: ^10.0
2729

2830
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2931

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@
1818
"require": {
1919
"php": "^8.2|^8.3|^8.4",
2020
"graham-campbell/security-core": "^4.0",
21-
"illuminate/contracts": "^10.0|^11.0",
21+
"illuminate/contracts": "^10.0|^11.0|^12.0",
2222
"spatie/laravel-package-tools": "^1.9.2"
2323
},
2424
"require-dev": {
2525
"laravel/pint": "^1.14",
2626
"nunomaduro/collision": "^7.0|^8.0",
27-
"orchestra/testbench": "^8.0|^9.0",
28-
"pestphp/pest": "^2.0",
29-
"pestphp/pest-plugin-laravel": "^2.0",
30-
"phpunit/phpunit": "^10.4"
27+
"orchestra/testbench": "^8.0|^9.0|^10.0",
28+
"pestphp/pest": "^2.0|^3.7",
29+
"pestphp/pest-plugin-laravel": "^2.0|^3.1",
30+
"phpunit/phpunit": "^10.4|^11.5.3"
3131
},
3232
"autoload": {
3333
"psr-4": {
@@ -59,4 +59,4 @@
5959
},
6060
"minimum-stability": "dev",
6161
"prefer-stable": true
62-
}
62+
}

0 commit comments

Comments
 (0)