Skip to content

Commit 20c5a56

Browse files
Add Support for Laravel 12 (#139)
1 parent 10fc186 commit 20c5a56

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ jobs:
1515
matrix:
1616
os: [ubuntu-latest]
1717
php: [8.2, 8.3, 8.4]
18-
laravel: [10.*, 11.*]
18+
laravel: [12.*, 11.*, 10.*]
1919
browsershot: [4.*, 5.*]
2020
stability: [prefer-lowest, prefer-stable]
2121
include:
2222
- laravel: 10.*
2323
testbench: ^8.0
2424
- laravel: 11.*
2525
testbench: ^9.0
26+
- laravel: 12.*
27+
testbench: ^10.0
2628

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

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,19 @@
2020
],
2121
"require": {
2222
"php": "^8.2",
23-
"hammerstone/sidecar": "^0.4 || ^0.5 || ^0.6",
24-
"illuminate/contracts": "^10.0 || ^11.0",
23+
"hammerstone/sidecar": "^0.4 || ^0.5 || ^0.6 || ^0.7",
24+
"illuminate/contracts": "^10.0 || ^11.0 || ^12.0",
2525
"spatie/browsershot": "^4.0 || ^5.0",
2626
"spatie/laravel-package-tools": "^1.9.2"
2727
},
2828
"require-dev": {
2929
"ext-imagick": "*",
30-
"larastan/larastan": "^1.0|^2.0",
3130
"laravel/pint": "^1.13",
3231
"league/flysystem-aws-s3-v3": "^1.0|^2.0|^3.0",
3332
"nunomaduro/collision": "^7.0|^8.0",
34-
"orchestra/testbench": "^8.0|^9.0",
35-
"pestphp/pest": "^2.0",
36-
"pestphp/pest-plugin-laravel": "^2.0",
33+
"orchestra/testbench": "^8.0|^9.0|^10.0",
34+
"pestphp/pest": "^2.0|^3.0",
35+
"pestphp/pest-plugin-laravel": "^2.0|^3.0",
3736
"phpstan/extension-installer": "^1.1",
3837
"phpstan/phpstan-deprecation-rules": "^1.0",
3938
"phpstan/phpstan-phpunit": "^1.0",

0 commit comments

Comments
 (0)