Skip to content

Commit e612518

Browse files
Laravel 12.x Compatibility (slashequip#21)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12 * Fix styling --------- Co-authored-by: laravel-shift <[email protected]> Co-authored-by: Sam Jones <[email protected]>
1 parent 4dee39c commit e612518

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@ on: [pull_request]
55
jobs:
66
test:
77
runs-on: ${{ matrix.os }}
8+
89
strategy:
910
fail-fast: true
1011
matrix:
1112
os: [ubuntu-latest]
1213
php: ['8.2','8.3', '8.4']
13-
laravel: [11.*]
14+
laravel: ['11.*', '12.*']
1415
stability: ['prefer-stable']
1516
include:
1617
- laravel: 11.*
1718
testbench: 9.*
19+
- laravel: 12.*
20+
testbench: 10.*
1821

1922
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2023

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"require": {
1717
"php": "^8.2",
1818
"guzzlehttp/guzzle": "^7.8",
19-
"illuminate/contracts": "^10.0|^11.0"
19+
"illuminate/contracts": "^10.0|^11.0|^12.0"
2020
},
2121
"require-dev": {
2222
"laravel/pint": "^1.18",
2323
"mockery/mockery": "^1.6",
2424
"nunomaduro/larastan": "^2.0",
25-
"orchestra/testbench": "^8.5|^9.0",
26-
"pestphp/pest": "^2.36"
25+
"orchestra/testbench": "^8.5|^9.0|^10.0",
26+
"pestphp/pest": "^2.36|^3.7"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)