Skip to content
Merged
Show file tree
Hide file tree
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-Experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Run tests
continue-on-error: true
run: ./vendor/bin/phpunit --verbose --colors
run: ./vendor/bin/phpunit --colors
env:
REDIS_PORT: ${{ job.services.valkey.ports['6379'] }}
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Configure PHPUnit matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Run tests
run: ./vendor/bin/phpunit --verbose --colors --coverage-clover=coverage.xml
run: ./vendor/bin/phpunit --colors --coverage-clover=coverage.xml
env:
REDIS_PORT: ${{ job.services.valkey.ports['6379'] }}
- name: Upload coverage to Codecov
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
with:
persist-credentials: false
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
- name: Start stack
run: |
docker compose up -d
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"require-dev": {
"doctrine/coding-standard": "^12.0",
"guzzlehttp/psr7": "^2.0",
"infection/infection": "^0.27",
"infection/infection": "^0.31",
"php-http/discovery": "^1.12",
"php-http/guzzle7-adapter": "^1.0.0",
"php-http/mock-client": "^1.3",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^9.5.10",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.1"
"phpunit/phpunit": "^11.5.45",
"psalm/plugin-phpunit": "^0.19.5",
"vimeo/psalm": "^6.13.1"
},
"suggest": {
"ext-redis": "Required if using the Redis storage.",
Expand Down
Loading
Loading