Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d62cbb9
436: proof of concept using prebuilt binaries
asgrim Dec 23, 2025
4a92b95
436: handle a list of possible download methods
asgrim Dec 31, 2025
df134c5
436: add back in downloadUrlMethod-specific exception messages
asgrim Jan 2, 2026
eeee639
436: updating tests for multiple download URL methods support
asgrim Jan 2, 2026
517ca88
436: detect which flavour of glibc is present
asgrim Jan 7, 2026
630ea4c
436: detect if PHP is in Debug mode
asgrim Jan 7, 2026
81552fd
436: define formats for pre-packaged binary asset names
asgrim Jan 7, 2026
fee222d
436: added basic documentation of new download-url-method list
asgrim Jan 7, 2026
fbf0558
436: fix up test expectations for pre-packaged binary DownloadUrlMethod
asgrim Jan 8, 2026
9c1eeee
436: added OverrideDownloadUrlInstallListener test coverage for pre-p…
asgrim Jan 9, 2026
71ecfc5
436: added a bunch of tests for pre-built binaries
asgrim Jan 13, 2026
97cd6c9
436: include OS in pre-packaged-binary package names
asgrim Jan 16, 2026
53c4c57
436: detect bsdlibc on OSX
asgrim Jan 16, 2026
ffc5335
436: download-url-methods should have at list one defined
asgrim Jan 26, 2026
bfd9b32
436: removed now-redundant downloadUrlMethod() tests (method was remo…
asgrim Jan 29, 2026
77f42a0
436: updated to Composer 2.9.5
asgrim Jan 29, 2026
4149a46
436: update BuildCommand integration test to allow for pre-packaged-b…
asgrim Feb 4, 2026
531433d
436: check for prebuilt archive output in Behat test
asgrim Feb 5, 2026
ae7ae40
436: rm the existing extension before cp the new one
asgrim Feb 6, 2026
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
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@
"fidry/cpu-core-counter": "^1.3.0",
"illuminate/container": "^10.49.0",
"psr/container": "^2.0.2",
"symfony/console": "^6.4.27",
"symfony/event-dispatcher": "^6.4.25",
"symfony/process": "^6.4.26",
"symfony/console": "^6.4.32",
"symfony/event-dispatcher": "^6.4.32",
"symfony/process": "^6.4.33",
"thephpf/attestation": "^0.0.5",
"webmozart/assert": "^1.12.1"
},
"require-dev": {
"ext-openssl": "*",
"behat/behat": "^3.27.0",
"behat/behat": "^3.29.0",
"bnf/phpstan-psr-container": "^1.1",
"doctrine/coding-standard": "^14.0.0",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan": "^2.1.38",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^10.5.58"
"phpunit/phpunit": "^10.5.63"
},
"replace": {
"symfony/polyfill-php81": "*",
Expand Down
Loading