Skip to content

Commit 1f4ad53

Browse files
committed
Add Laravel 13 to workflow
1 parent 09d89b5 commit 1f4ad53

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

.github/workflows/phpstan.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,18 @@ jobs:
1919
matrix:
2020
os: [ubuntu-latest]
2121
php: [8.5, 8.4, 8.3, 8.2]
22-
laravel: [11.*, 12.*]
22+
laravel: [11.*, 12.*, 13.*]
2323
stability: [prefer-stable]
2424
include:
2525
- laravel: 11.*
2626
testbench: 9.*
2727
- laravel: 12.*
2828
testbench: 10.*
29+
- laravel: 13.*
30+
testbench: 11.*
31+
exclude:
32+
- php: 8.2
33+
laravel: 13.*
2934

3035
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.os }}
3136

.github/workflows/run-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,18 @@ jobs:
2121
matrix:
2222
os: [ubuntu-latest]
2323
php: [8.5, 8.4, 8.3, 8.2]
24-
laravel: [11.*, 12.*]
24+
laravel: [11.*, 12.*, 13.*]
2525
stability: [prefer-stable]
2626
include:
2727
- laravel: 11.*
2828
testbench: 9.*
2929
- laravel: 12.*
3030
testbench: 10.*
31+
- laravel: 13.*
32+
testbench: 11.*
33+
exclude:
34+
- php: 8.2
35+
laravel: 13.*
3136

3237
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.os }}
3338

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `dutchcodingcompany/developer-logins` will be documented in this file.
44

5+
## Unreleased
6+
7+
- Add support for Laravel 13
8+
59
## 2.1.0 - 2026-01-20
610

711
- Feature/add php 85 to workflow by @bramr94 in https://github.com/DutchCodingCompany/filament-developer-logins/pull/50

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
"friendsofphp/php-cs-fixer": "^3.8",
3030
"larastan/larastan": "^2.9|^3.0",
3131
"nunomaduro/collision": "^7.0|^8.1",
32-
"orchestra/testbench": "^9.0|^10.0",
33-
"phpunit/phpunit": "^10.0|^11.0",
32+
"orchestra/testbench": "^9.0|^10.0|^11.0",
33+
"phpunit/phpunit": "^10.0|^11.0|^12.5.14",
3434
"spatie/laravel-ray": "^1.26"
3535
},
3636
"autoload": {

0 commit comments

Comments
 (0)