Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: ["8.1", "8.2", "8.3", "8.4"]
php: ["8.1", "8.2", "8.3", "8.4", "8.5"]
Copy link

Copilot AI Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding PHP 8.5 to the matrix will run the job on 8.5, but the Composer dependency resolution is still pinned to PHP 8.1.33 via composer.json's config.platform.php. That means the new 8.5 job won’t validate that dependencies/lockfile are resolvable under PHP 8.5 (it will install as if on 8.1). If the intent is to ensure full compatibility per PHP version, consider overriding/removing the platform PHP version for CI runs (or setting it dynamically from matrix.php).

Copilot uses AI. Check for mistakes.
db: ["mysql", "sqlite"]

name: PHP ${{ matrix.php }} + ${{ matrix.db}}
Expand Down