Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.5, 8.4, 8.3, 8.2]
laravel: [11.*, 12.*]
laravel: [11.*, 12.*, 13.*]
stability: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*
- laravel: 13.*
testbench: 11.*
exclude:
- php: 8.2
laravel: 13.*

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

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,18 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.5, 8.4, 8.3, 8.2]
laravel: [11.*, 12.*]
laravel: [11.*, 12.*, 13.*]
stability: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*
- laravel: 13.*
testbench: 11.*
exclude:
- php: 8.2
laravel: 13.*

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

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## Unreleased

- Add support for Laravel 13

## 2.1.0 - 2026-01-20

- Feature/add php 85 to workflow by @bramr94 in https://github.com/DutchCodingCompany/filament-developer-logins/pull/50
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"friendsofphp/php-cs-fixer": "^3.8",
"larastan/larastan": "^2.9|^3.0",
"nunomaduro/collision": "^7.0|^8.1",
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^10.0|^11.0",
"orchestra/testbench": "^9.0|^10.0|^11.0",
"phpunit/phpunit": "^10.0|^11.0|^12.5.14",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
Expand Down
Loading