Version Bump for multiple packages#3
Merged
kaiserkiwi merged 3 commits intoJul 1, 2026
Merged
Conversation
…rop support for old Laravel 10 and 11 versions - Updates minimum PHP version from 8.1 to 8.3: - Laravel support: 10/11/12 → 12/13 - PHPUnit schema: 10.3 → 11 - Pest: 2.x → 4.x - Larastan: 2.x → 3.x - PHPStan packages: 1.x → 2.x - Orchestra Testbench: 8.x → 10/11 - Add Laravel Pao package to reduce token usage for Agent sessions Also sets minimum-stability to stable, adds platform config for PHP 8.3, and removes test-coverage script and coverage configuration from phpunit.xml.
There was a problem hiding this comment.
Pull request overview
This PR updates the package’s baseline to PHP 8.3 and Laravel 12/13, aligning runtime and tooling (Pest/PHPUnit/PHPStan/Larastan/Testbench) with the new supported framework versions.
Changes:
- Bump runtime/framework constraints: PHP
^8.1→^8.3, Laravel (illuminate/contracts)^10|^11|^12→^12|^13. - Upgrade dev tooling: Pest
2.x→4.x, Larastan2.x→3.x, PHPStan PHPUnit/deprecation rules1.x→2.x, Testbench8.x→10/11, addlaravel/pao. - Update PHPUnit config: schema version to 11, remove unused coverage configuration; remove
test-coveragecomposer script; setminimum-stabilitytostableand add a PHP 8.3 platform override.
Note: Laut euren Guidelines sollte die PR-Beschreibung auf Deutsch sein; bitte die Beschreibung entsprechend anpassen.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| composer.json | Raises PHP/Laravel version requirements and upgrades dev tooling to match Laravel 12/13 and PHP 8.3. |
| phpunit.xml.dist | Moves configuration to PHPUnit 11 schema and removes unused coverage reporting configuration. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…HPStan analysis - Remove 'config' directory from PHPstan paths - Simplify languages collection return (already initialized by getAllLanguages) - Replace string checks with filled() helper for cleaner validation - Remove redundant null coalescing operators where values are guaranteed - Strengthen null check in SetupOrchestrator for explicit comparison
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This Pull request bumps the minimum PHP version to 8.3 and supported Laravel Version to 13.
It also drops support for old Laravel 10 and 11 versions.
Updates in detail
8.1to8.3:10/11/12→12/1310.3→112.x→4.x2.x→3.x1.x→2.x8.x→10/11minimum-stabilitywas set todev. So I changed that tostable.composer updatefrom picking the wrong versionphpunit.xmlas it was never used for this package