Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
paths:
- '**.php'
- 'phpstan.neon.dist'
- 'composer.json'
- 'composer.lock'
- '.github/workflows/phpstan.yml'
workflow_dispatch:

jobs:
phpstan:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.3, 8.4]
php: [8.2, 8.3, 8.4]
laravel: [11.*, 12.*, 13.*]
stability: [prefer-lowest, prefer-stable]
exclude:
# Laravel 13 requires PHP 8.3+ (via orchestra/testbench 11,
# phpunit 12, pest 4). Excluding the incompatible cell keeps
# PHP 8.2 supported for L11/L12 consumers.
- php: 8.2
laravel: 13.*
include:
- laravel: 11.*
testbench: 9.*
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^8.3|^8.4",
"php": "^8.2|^8.3|^8.4",
"laravel/pint": "^1.13",
"spatie/laravel-package-tools": "^1.16.0",
"laravel/framework": "^11.0|^12.0|^13.0"
Expand Down