Skip to content

Commit 36df41a

Browse files
authored
Merge pull request #27 from protonemedia/laravel-12
Support for Laravel 12
2 parents 26edd4c + 5a71e34 commit 36df41a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/run-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
php: [8.4, 8.3, 8.2]
16-
laravel: [11.*, 10.*]
16+
laravel: [12.*, 11.*]
1717
os: [ubuntu-latest, windows-latest]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 12.*
21+
testbench: 10.*
2022
- laravel: 11.*
2123
testbench: 9.*
22-
- laravel: 10.*
23-
testbench: 8.*
2424

2525
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2626

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
],
1818
"require": {
1919
"php": "^8.2|^8.3|^8.4",
20-
"illuminate/contracts": "^10.0|^11.0",
21-
"laravel/dusk": "^7.0|^8.0",
20+
"illuminate/contracts": "^11.43|^12.0",
21+
"laravel/dusk": "^8.0",
2222
"spatie/invade": "^1.1"
2323
},
2424
"require-dev": {
2525
"laravel/pint": "^1.0",
26-
"nesbot/carbon": "^2.66",
26+
"nesbot/carbon": "^2.66|^3.0",
2727
"nunomaduro/collision": "^7.0|^8.0",
28-
"orchestra/testbench": "^8.0|^9.0",
29-
"pestphp/pest": "^2.0",
30-
"pestphp/pest-plugin-laravel": "^2.0",
31-
"phpunit/phpunit": "^10.4"
28+
"orchestra/testbench": "^9.11|^10.0",
29+
"pestphp/pest": "^3.0",
30+
"pestphp/pest-plugin-laravel": "^3.0",
31+
"phpunit/phpunit": "^10.4|^11.5.3"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)