Skip to content

Commit

Permalink
Add support for phpunit 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Nov 16, 2024
1 parent 3bdcf1a commit 1f83256
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
dependencies:
- "lowest"
- "highest"

steps:
- name: "Checkout repository"
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
Expand All @@ -39,7 +40,7 @@ jobs:
coverage: "none"

- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"amphp/http-client": "^5",
"amphp/process": "^2",
"mockery/mockery": "^1.5",
"phpunit/php-code-coverage": "^10",
"phpunit/phpunit": "^10.5",
"phpunit/php-code-coverage": "^10 || ^11",
"phpunit/phpunit": "^10.5 || ^11",
"seec/phpunit-consecutive-params": "^1.1"
},
"minimum-stability": "stable",
Expand Down

0 comments on commit 1f83256

Please sign in to comment.