Skip to content

Documentation#250

Open
viktorprogger wants to merge 46 commits intomasterfrom
docs
Open

Documentation#250
viktorprogger wants to merge 46 commits intomasterfrom
docs

Conversation

@viktorprogger
Copy link
Copy Markdown
Contributor

Q A
Is bugfix? ✔️
New feature?
Breaks BC?

@viktorprogger viktorprogger changed the title Start docs refining Documentation Dec 13, 2025
@codecov
Copy link
Copy Markdown

codecov bot commented Dec 13, 2025

Codecov Report

❌ Patch coverage is 95.31250% with 6 lines in your changes missing coverage. Please review.
✅ Project coverage is 98.85%. Comparing base (5a4edad) to head (9ea0cd3).

Files with missing lines Patch % Lines
src/Worker/Worker.php 88.88% 2 Missing ⚠️
...rc/Middleware/Consume/MiddlewareFactoryConsume.php 88.88% 1 Missing ⚠️
...eware/FailureHandling/MiddlewareFactoryFailure.php 88.88% 1 Missing ⚠️
src/Middleware/MiddlewareFactory.php 96.42% 1 Missing ⚠️
src/Middleware/Push/MiddlewareFactoryPush.php 85.71% 1 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##             master     #250      +/-   ##
============================================
+ Coverage     98.51%   98.85%   +0.34%     
+ Complexity      354      320      -34     
============================================
  Files            46       47       +1     
  Lines           942      873      -69     
============================================
- Hits            928      863      -65     
+ Misses           14       10       -4     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Comment thread docs/guide/en/configuration-with-config.md Outdated
Comment thread docs/guide/en/configuration-with-config.md Outdated
Comment thread docs/guide/en/message-handler.md Outdated
Comment thread docs/guide/en/message-handler.md Outdated
Comment thread docs/guide/en/message-handler.md Outdated
Comment thread docs/guide/en/message-handler.md Outdated
Comment thread README.md Outdated
Comment thread README.md Outdated
Comment thread README.md Outdated
@viktorprogger viktorprogger marked this pull request as ready for review January 7, 2026 15:19
@samdark samdark requested a review from Copilot January 7, 2026 19:50
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request is marked as a bugfix and includes significant documentation improvements, code refactoring, and a critical bug fix. The main changes involve integrating CallableFactory into the Worker class to simplify handler resolution, fixing a bug in the JSON message serializer, adding comprehensive documentation, and adding a command alias.

Key changes:

  • Integration of CallableFactory into Worker for unified callable resolution
  • Bug fix in JsonMessageSerializer where $payload['meta'] was incorrectly accessed instead of $meta
  • Extensive documentation added covering queue channels, message handlers, middleware pipelines, error handling, and more
  • Command alias queue:listen-all added to replace the typo queue:listen:all

Reviewed changes

Copilot reviewed 29 out of 29 changed files in this pull request and generated 5 comments.

Show a summary per file
File Description
tests/Unit/WorkerTest.php Added new test case for object method callable definitions and updated tests to use CallableFactory parameter
tests/Unit/Middleware/CallableFactoryTest.php Major refactoring with data providers for comprehensive testing of callable factory scenarios
tests/TestCase.php Added CallableFactory parameter to worker creation
tests/Integration/MiddlewareTest.php Added CallableFactory parameter to test setup
tests/Integration/MessageConsumingTest.php Added CallableFactory instantiation and parameter in worker setup
tests/Benchmark/QueueBench.php Added CallableFactory parameter to worker constructor
src/Worker/Worker.php Integrated CallableFactory for unified handler resolution, simplified handler caching logic
src/Middleware/CallableFactory.php Enhanced to support Closure detection, object method definitions, and improved validation
src/Message/JsonMessageSerializer.php Bug fix: corrected variable reference from $payload['meta'] to $meta
src/Command/ListenAllCommand.php Added command alias 'queue:listen:all' for backward compatibility
docs/guide/en/worker.md Rewritten to focus on starting workers and supervisor configuration
docs/guide/en/usage.md Expanded with queue channels, delayed execution, job status examples
docs/guide/en/producing-messages-from-external-systems.md New comprehensive guide for external message producers
docs/guide/en/prerequisites-and-installation.md New installation and requirements guide
docs/guide/en/middleware-pipelines.md New detailed middleware pipeline documentation
docs/guide/en/message-handler.md New guide explaining handler definition formats and configuration
docs/guide/en/loops.md New documentation on loop interface and signal handling
docs/guide/en/job-status.md New guide on job status tracking
docs/guide/en/error-handling.md Significantly expanded with step-by-step failure handling flow
docs/guide/en/envelopes.md New documentation on envelope pattern and metadata handling
docs/guide/en/debug-integration.md New guide for Yii Debug integration
docs/guide/en/console-commands.md New comprehensive console commands reference
docs/guide/en/configuration-with-config.md New configuration guide for yiisoft/config users
docs/guide/en/configuration-manual.md New manual configuration guide with examples
docs/guide/en/channels.md New detailed guide on queue channels concept and configuration
docs/guide/en/callable-definitions-extended.md New guide explaining extended callable definition formats
docs/guide/en/README.md Restructured guide index with better organization
config/params.php Added 'queue:listen-all' command alias
README.md Major rewrite with quick start guide and improved structure

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread docs/guide/en/callable-definitions-extended.md Outdated
Comment thread README.md Outdated
Comment thread docs/guide/en/producing-messages-from-external-systems.md Outdated
Comment thread README.md Outdated
Comment thread README.md Outdated
Comment thread docs/guide/en/callable-definitions-extended.md Outdated
Comment thread docs/guide/en/callable-definitions-extended.md Outdated
Comment thread docs/guide/en/callable-definitions-extended.md Outdated
Comment thread docs/guide/en/callable-definitions-extended.md Outdated
Comment thread docs/guide/en/callable-definitions-extended.md Outdated
Comment thread docs/guide/en/console-commands.md Outdated
Comment thread docs/guide/en/debug-integration.md Outdated
Comment thread docs/guide/en/error-handling.md Outdated
Comment thread docs/guide/en/error-handling.md Outdated
Comment thread src/Worker/Worker.php Outdated
Comment thread README.md
Comment thread README.md Outdated
Comment thread docs/guide/en/README.md Outdated
Comment thread docs/guide/en/configuration-manual.md
Comment thread docs/guide/en/middleware-pipelines.md
Comment thread docs/guide/en/error-handling-advanced.md Outdated
Comment thread docs/guide/en/message-handler-advanced.md Outdated
Comment thread README.md Outdated
Comment thread README.md Outdated
Comment thread docs/guide/en/performance-tuning.md Outdated
Comment thread docs/guide/en/performance-tuning.md Outdated
Comment thread docs/guide/en/console-commands.md Outdated
Comment thread docs/guide/en/error-handling.md Outdated
Comment thread docs/guide/en/README.md Outdated
Comment thread README.md
Comment thread docs/guide/en/message-handler-advanced.md Outdated
Comment thread docs/guide/en/queue-names.md
Comment thread src/Middleware/CallableFactory.php Outdated
@viktorprogger
Copy link
Copy Markdown
Contributor Author

@copilot resolve the merge conflicts in this pull request

1 similar comment
@samdark
Copy link
Copy Markdown
Member

samdark commented Apr 18, 2026

@copilot resolve the merge conflicts in this pull request

Kept docs-branch MessageStatus rename; accepted master's removal of
QueueInterface::withAdapter() and AdapterFactoryQueueProvider.
Resolved all code conflicts preserving MessageStatus enum name.

Co-authored-by: samdark <47294+samdark@users.noreply.github.com>
Copy link
Copy Markdown

Copilot AI commented Apr 18, 2026

@copilot resolve the merge conflicts in this pull request

Resolved the merge conflicts in commit 2be2f78. The conflicts were from master's removal of QueueInterface::withAdapter() and AdapterFactoryQueueProvider (commit 5a4edad). Kept the docs branch's MessageStatus rename and accepted master's removal of withAdapter() and related code across all conflicting files.

@copilot resolve the merge conflicts in this pull request

Merge conflicts resolved in commit 2be2f78. The conflicts were across 6 files due to master removing QueueInterface::withAdapter() and AdapterFactoryQueueProvider. All resolved by keeping the docs branch's MessageStatus enum rename and accepting master's removal of the adapter-related methods.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)
  • https://api.github.com/repos/colinodell/json5/zipball/15b063f8cb5e6deb15f0cd39123264ec0d19c710
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)
  • https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)
  • https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)
  • https://api.github.com/repos/infection/extension-installer/zipball/9b351d2910b9a23ab4815542e93d541e0ca0cdcf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)
  • https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)
  • https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rcdJtf /usr/bin/composer install (http block)

If you need me to access, download, or install something from one of these locations, you can either:

Co-authored-by: samdark <47294+samdark@users.noreply.github.com>
@Codex
Copy link
Copy Markdown

Codex AI commented Apr 18, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/OndraM/ci-detector/zipball/8b0223b5ed235fd377c75fdd1bfcad05c0f168b8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/a9727678fbd12997f1d9de8f4a37824ed9df1065
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/3cb32845c5f758913a4b9eafd91ae18eafc26d82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/amphp/amp/zipball/d7dda98dae26e56f3f6fcfbf1c1f819c9a993207
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/colinodell/json5/zipball/15b063f8cb5e6deb15f0cd39123264ec0d19c710
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/ergebnis/agent-detector/zipball/5b654a9f1ff8a5d2ce6a57568df5ae8801c87f64
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/a9e113dbc7d849e35b8776da39edaf4313b7b6c9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/infection/abstract-testframework-adapter/zipball/18925e20d15d1a5995bb85c9dc09e8751e1e069b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/infection/extension-installer/zipball/9b351d2910b9a23ab4815542e93d541e0ca0cdcf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/infection/include-interceptor/zipball/0cc76d95a79d9832d74e74492b0a30139904bdf7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/infection/infection/zipball/873cd3335774a114bef9ca93388e623bf362d820
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/jsonrainbow/json-schema/zipball/a0b7c13588b102d7d6536823e96d1c88d3dba85e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/5109aed7b4695e6d772c4e748030c92da69a7f81
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/51bd93cc741b7fc3d63d20b6bdcd99fdaa359837
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/31a105931bc8ffa3a123383829772e832fd8d903
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phpbench/container/zipball/0c7b2d36c1ea53fe27302fb8873ded7172047196
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phpbench/phpbench/zipball/661c8c6abbc7734986cf7bc6062c237fbb450461
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/phpstan/phpstan/zipball/d452086fb4cf648c6b2d8cf3b639351f79e4f3e2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/reactphp/child-process/zipball/970f0e71945556422ee4570ccbabaedc3cf04ad3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/reactphp/socket/zipball/ef5b17b81f6f60504c539313f94f2d826c5faa08
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/rectorphp/rector/zipball/e645b6463c6a88ea5b44b17d3387d35a912c7946
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sanmai/later/zipball/72a82d783864bca90412d8a26c1878f8981fee97
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sanmai/pipeline/zipball/fb8d0c23b4ef085315a36d397fafa052203020ce
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/55dfef806eb7dfeb6e7a6935601fef866f8ca48d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/0735b90f4da94969541dac1da743446e276defa6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/33198268dad71e926626b618f3ec3966661e4d90
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/47e34210757a2f37a97dcd207d032e1b01e64c7a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/spatie/array-to-xml/zipball/88b2f3852a922dd73177a68938f8eb2ec70c7224
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/console/zipball/1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/event-dispatcher/zipball/f57b899fa736fd71121168ef268f23c206083f0a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/options-resolver/zipball/2888fcdc4dc2fd5f7c7397be78631e8af12e02b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/ad1b7b9092976d6c948b8a187cec9faaea9ec1df
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/polyfill-php84/zipball/88486db2c389b290bf87ff1de7ebc1e13e42bb06
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/process/zipball/60f19cd3badc8de688421e21e4305eba50f8089a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/stopwatch/zipball/70a852d72fec4d51efb1f48dcd968efcaf5ccb89
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/symfony/string/zipball/114ac57257d75df748eda23dd003878080b8e688
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/thecodingmachine/safe/zipball/3115ecd6b4391662b4931daac4eba6b07a2ac1f0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/vimeo/psalm/zipball/d747f6500b38ac4f7dfc5edbcae6e4b637d7add0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/webmozarts/glob/zipball/8a2842112d6916e61e0e15e316465b611f3abc17
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/m1m3ef /usr/bin/composer install --no-interaction --no-progress r (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/arrays/zipball/8efada90e4fd540b3da476779bc1b7bd9319b62f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/code-style/zipball/8fb77ea5a67adb07a5a9dc2c76aaaf2285335319
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/definitions/zipball/efba764905b89b549e2b5a7a72f50a79b3d5b0cc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/di/zipball/09545283f29b6311805eca870bf01d2603704c63
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/factory/zipball/c3d8be80dd3f1fc73f42f4293e2ba6b709a44363
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/files/zipball/465650fd9e4295669f42ab7e9fec2386700540a7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/friendly-exception/zipball/c6c36fd60a0b4f1514882d2ce8395f54352ec967
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/injector/zipball/d3f718256b734933670ad11143cca724d340fc90
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/profiler/zipball/9f1bd1649f079ddfd45217f8da50533b12ca78a3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/proxy/zipball/7f316620e7b3c00ed3fe74812f1a4f5193de38b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/strings/zipball/9bc7fea56374619cccd4587848029fe97f98bb33
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/test-support/zipball/b3fe2b60ad7583045387b36d586fc28035885490
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/var-dumper/zipball/0860637f99fddfbeb98976bcc716b2aabc94ff85
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)
  • https://api.github.com/repos/yiisoft/yii-debug/zipball/54c57b5c745a11a69e1b7925379900fed6656968
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/q7gvkl /usr/bin/composer install --no-interaction --no-progress --prefer-dist git } conf�� en sh odex/vendor/x86_64-REDACTED-linux-musl/path/uname exec &#39;git&#39; &#39;conflsb_release git } git (http block)

If you need me to access, download, or install something from one of these locations, you can either:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants