Skip to content

Commit 3ffa17f

Browse files
committed
chore: Psalm: 5.26.1 -> 6.13.1, Infection: 0.27.11 -> 0.31.9, PHPUnit: 9.6.3 -> 11.5.45
Exceptions are now final. This is a BC in the API.
1 parent 30af110 commit 3ffa17f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2624
-1181
lines changed

.github/workflows/CI-Experimental.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3838
- name: Run tests
3939
continue-on-error: true
40-
run: ./vendor/bin/phpunit --verbose --colors
40+
run: ./vendor/bin/phpunit --colors
4141
env:
4242
REDIS_PORT: ${{ job.services.valkey.ports['6379'] }}

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Configure PHPUnit matchers
4242
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
4343
- name: Run tests
44-
run: ./vendor/bin/phpunit --verbose --colors --coverage-clover=coverage.xml
44+
run: ./vendor/bin/phpunit --colors --coverage-clover=coverage.xml
4545
env:
4646
REDIS_PORT: ${{ job.services.valkey.ports['6379'] }}
4747
- name: Upload coverage to Codecov
@@ -91,7 +91,7 @@ jobs:
9191
with:
9292
persist-credentials: false
9393
- name: Install dependencies
94-
run: composer install --no-interaction --prefer-dist
94+
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
9595
- name: Start stack
9696
run: |
9797
docker compose up -d

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
"require-dev": {
1313
"doctrine/coding-standard": "^12.0",
1414
"guzzlehttp/psr7": "^2.0",
15-
"infection/infection": "^0.27",
15+
"infection/infection": "^0.31",
1616
"php-http/discovery": "^1.12",
1717
"php-http/guzzle7-adapter": "^1.0.0",
1818
"php-http/mock-client": "^1.3",
1919
"phpstan/phpstan": "^1.2",
2020
"phpstan/phpstan-phpunit": "^1.0",
2121
"phpstan/phpstan-strict-rules": "^1.1",
22-
"phpunit/phpunit": "^9.5.10",
23-
"psalm/plugin-phpunit": "^0.19.0",
24-
"vimeo/psalm": "^5.1"
22+
"phpunit/phpunit": "^11.5.45",
23+
"psalm/plugin-phpunit": "^0.19.5",
24+
"vimeo/psalm": "^6.13.1"
2525
},
2626
"suggest": {
2727
"ext-redis": "Required if using the Redis storage.",

0 commit comments

Comments
 (0)