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
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: ci

# The harness's own self-test, on PHP 8.4 and 8.5. The committed composer.json declares no
# repositories and requires the middlewares at @dev, so this resolves them from Packagist. It turns
# green once the middleware changes the harness exercises are released to their main branches.
# The harness's own self-test, on PHP 8.4 and 8.5. The committed composer.json declares no repositories, so
# this resolves the middlewares from Packagist: the WSSE one from its active development branch, v4.x, rather
# than from the stale default branch. It turns green once the middleware changes the harness exercises have
# landed there.
on:
push:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"php": "~8.4.0 || ~8.5.0",
"ext-dom": "*",
"ext-openssl": "*",
"php-soap/psr18-wsse-middleware": "@dev",
"php-soap/psr18-wsse-middleware": "4.x-dev",
"php-soap/psr18-attachments-middleware": "@dev",
"nyholm/psr7": "^1.8",
"symfony/http-client": "^7.1"
Expand Down
Loading