Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to support PHP 8.4 runtime and basic code parsing (not the hooks hell of PHP 8.4) #913

Merged
merged 8 commits into from
Feb 6, 2025
Merged
5 changes: 3 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@1.26.0
uses: laminas/laminas-ci-matrix-action@1.29.0

qa:
name: QA Checks
Expand All @@ -27,7 +27,7 @@ jobs:
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@1.39.0
uses: laminas/laminas-continuous-integration-action@1.41.0
env:
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
"INFECTION_DASHBOARD_API_KEY": ${{ secrets.INFECTION_DASHBOARD_API_KEY }}
Expand All @@ -47,6 +47,7 @@ jobs:
php-version:
- "8.2"
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
3 changes: 2 additions & 1 deletion .laminas-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"memory_limit=-1"
],
"exclude": [
{"name": "Infection"}
{"name": "Infection"},
{"name": "PHPUnit [8.4, lowest]"}
],
"additional_checks": [
{
Expand Down
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"name": "roave/backward-compatibility-check",
"description": "Tool to compare two revisions of a public API to check for BC breaks",
"require": {
"php": "~8.2.0 || ~8.3.0",
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"azjezz/psl": "^3.0.2",
"composer/composer": "^2.7.6",
"nikic/php-parser": "^4.19.1",
"azjezz/psl": "^3.2.0",
"composer/composer": "^2.8.5",
"nikic/php-parser": "^5.4.0",
"nikolaposa/version": "^4.2.0",
"ocramius/package-versions": "^2.8.0",
"roave/better-reflection": "^6.26.0",
"symfony/console": "^7.0.7"
"ocramius/package-versions": "^2.10.0",
"roave/better-reflection": "^6.54.0",
"symfony/console": "^7.2.1"
},
"license": "MIT",
"authors": [
Expand All @@ -30,12 +30,12 @@
"doctrine/coding-standard": "^12.0.0",
"estahn/phpunit-json-assertions": "^4.0",
"php-standard-library/psalm-plugin": "^2.3.0",
"phpunit/phpunit": "^10.5.44",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.35.0",
"phpunit/phpunit": "^11.5.6",
"psalm/plugin-phpunit": "^0.19.2",
"roave/infection-static-analysis-plugin": "^1.36.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.10.0",
"vimeo/psalm": "^5.24.0"
"squizlabs/php_codesniffer": "^3.11.3",
"vimeo/psalm": "^6.4.0"
},
"conflict": {
"revolt/event-loop": "<0.2.5",
Expand Down
Loading
Loading