Skip to content

Commit 7c80b54

Browse files
Laravel 13.x Compatibility (#257)
* Bump dependencies for Laravel 13 * Update GitHub Actions for Laravel 13
1 parent 7fe5e7c commit 7c80b54

2 files changed

Lines changed: 14 additions & 12 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: run-tests
22

33
on:
4-
push:
5-
paths:
6-
- '**.php'
7-
- '.github/workflows/run-tests.yml'
8-
- 'tests/**'
9-
- 'pest.php'
10-
- 'composer.json'
11-
- 'composer.lock'
4+
push:
5+
paths:
6+
- '**.php'
7+
- .github/workflows/run-tests.yml
8+
- tests/**
9+
- pest.php
10+
- composer.json
11+
- composer.lock
1212

1313
jobs:
1414
test:
@@ -19,13 +19,15 @@ jobs:
1919
matrix:
2020
os: [ubuntu-latest, windows-latest]
2121
php: ['8.3', '8.4']
22-
laravel: ['11.*', '12.*']
22+
laravel: ['11.*', '12.*', '13.*']
2323
stability: [prefer-stable]
2424
include:
2525
- laravel: 11.*
2626
testbench: ^9.0
2727
- laravel: 12.*
2828
testbench: ^10.0
29+
- laravel: 13.*
30+
testbench: ^11.0
2931

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

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"require": {
1919
"php": "^8.2",
2020
"filament/filament": "^4.0|^5.0",
21-
"illuminate/support": "^9|^10|^11|^12.0",
21+
"illuminate/support": "^9|^10|^11|^12.0|^13.0",
2222
"spatie/laravel-permission": "^5.4|^6.0|^7.0"
2323
},
2424
"require-dev": {
25-
"larastan/larastan": "^2.9||^3.0",
25+
"larastan/larastan": "^2.9||^3.0|dev-l13",
2626
"laravel/pint": "^1.14",
27-
"orchestra/testbench": "^10.0.0||^9.0.0||^8.22.0",
27+
"orchestra/testbench": "^10.0.0||^9.0.0||^8.22.0|^11.0",
2828
"pestphp/pest": "^4.0||^3.0||^2.34",
2929
"pestphp/pest-plugin-arch": "^4.0||^3.0||^2.7",
3030
"pestphp/pest-plugin-laravel": "^4.0||^3.0||^2.3",

0 commit comments

Comments
 (0)