Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 578e0ef

Browse files
authored
Merge pull request #19 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents e387025 + 9b5a3a7 commit 578e0ef

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: tests
33
on:
44
push:
55
branches:
6-
- 'v1'
7-
- 'v2'
8-
- 'v3'
6+
- v1
7+
- v2
8+
- v3
99
pull_request:
1010
branches:
1111
- '*'
@@ -22,11 +22,13 @@ jobs:
2222
matrix:
2323
os: [ubuntu-latest, windows-latest]
2424
php: [8.2, 8.3]
25-
laravel: ['11.*']
25+
laravel: ['11.*', '12.*']
2626
stability: [prefer-lowest, prefer-stable]
2727
include:
2828
- laravel: 11.*
2929
testbench: 9.*
30+
- laravel: 12.*
31+
testbench: 10.*
3032

3133
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3234

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"homepage": "https://github.com/sammyjo20",
1414
"require": {
1515
"php": "^8.2",
16-
"illuminate/http": "^11.0",
16+
"illuminate/http": "^11.0|^12.0",
1717
"saloonphp/saloon": "^3.1"
1818
},
1919
"require-dev": {
2020
"friendsofphp/php-cs-fixer": "^3.5",
21-
"orchestra/testbench": "^9.0",
22-
"pestphp/pest": "^2.34",
23-
"phpstan/phpstan": "^1.9",
21+
"orchestra/testbench": "^9.0|^10.0",
22+
"pestphp/pest": "^2.34|^3.7",
23+
"phpstan/phpstan": "^1.9|^2.1",
2424
"spatie/ray": "^1.33"
2525
},
2626
"minimum-stability": "stable",

0 commit comments

Comments
 (0)