Skip to content

Conversation

Copy link

Copilot AI commented Dec 7, 2025

Q A
Is bugfix?
New feature? ✔️
Breaks BC?
Fixed issues -

Description

Enables local development with .env files while maintaining production security through sensible defaults. Completely consolidates all environment and Docker configuration files to the root directory, eliminating the docker subdirectory entirely for a clean, flat project structure.

Implementation:

  • vlucas/phpdotenv - Industry-standard .env parser library

    • Loads from .env if present
    • Environment variables take precedence (Docker/CI compatibility)
    • Supports variable expansion, multi-line values, and robust validation
    • Consistent with yiisoft/app-api implementation
  • Environment defaults - APP_ENV now defaults to prod when unset

    • Development: create .env with APP_ENV=dev
    • Production: no .env required, defaults to prod
    • CI/Docker: explicit env vars override .env
  • Performance optimization - Skips .env loading entirely when APP_ENV is already set

    • No file system checks in Docker/CI environments
    • Maintains full functionality while improving performance
  • Consolidated environment files - All .env files at root directory

    • .env.example - General local development configuration
    • .env.docker.example - Docker-specific variables (stack name, ports, image names)
    • .env.dev.example - Docker development environment
    • .env.prod.example - Docker production environment
    • .env.test.example - Docker test environment
    • .env.override.example - Custom local overrides example
  • Consolidated Docker configuration - All Docker files at root directory

    • Dockerfile - Moved from docker/Dockerfile
    • compose.yml - Moved from docker/compose.yml
    • compose.dev.yml - Moved from docker/dev/compose.yml
    • compose.prod.yml - Moved from docker/prod/compose.yml
    • compose.test.yml - Moved from docker/test/compose.yml
    • Updated all compose files with correct paths (dockerfile, context, env_file)
    • Updated Makefile to reference new file locations
  • Docker directory completely removed

    • Moved docker/.env.env.docker.example
    • Updated Makefile to use -include .env.docker
    • No more docker subdirectory - everything at root level
  • .gitignore - Excludes all .env files from version control

Usage:

# Local non-Docker development
cp .env.example .env
./yii serve

# Docker development
cp .env.docker.example .env.docker  # Customize Docker-specific settings
cp .env.dev.example .env.dev        # Optional: customize dev environment
make up

# Production (no .env needed)
./yii serve  # defaults to APP_ENV=prod

# CI/Docker (env vars override, .env loading skipped)
APP_ENV=test ./yii serve

Changes from original scope:

  • Moved existing Docker .env files from docker/dev/, docker/prod/, and docker/test/ to root directory
  • Moved all Docker compose files and Dockerfile from docker/ subdirectories to root directory
  • Moved docker/.env to .env.docker.example at root
  • Completely removed docker directory - no subdirectories remain
  • Created environment-specific example files for Docker workflows
  • Updated all Docker compose files to reference root directory paths
  • Updated Makefile to use new file locations
  • Updated README with complete new directory structure
  • Switched to vlucas/phpdotenv library - Replaced custom DotEnvLoader implementation with industry-standard library for better compatibility and feature support

Benefits:

  • Industry-standard library - Using vlucas/phpdotenv for consistency with other Yii projects
  • Completely flat structure - No nested docker directories
  • All configuration files easily accessible at root
  • Follows modern Docker project conventions
  • Cleaner, simpler project layout
  • Easier to find and maintain all configuration
  • Backward compatible with existing make commands and CI/CD workflows

Backward compatible with existing Docker and CI/CD workflows, with optimized performance for environments where APP_ENV is already set.

Original prompt

This section details on the original issue you should resolve

<issue_title>Support .env for non-Docker environments</issue_title>
<issue_description>### Proposed new feature or change

Need to add support for .env for non-Docker environments. APP_ENV should be dev in .env but it should be excluded from git so when deployed to production it is prod env by default.</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 3 commits December 7, 2025 08:30
Co-authored-by: samdark <47294+samdark@users.noreply.github.com>
Co-authored-by: samdark <47294+samdark@users.noreply.github.com>
Co-authored-by: samdark <47294+samdark@users.noreply.github.com>
Copilot AI changed the title [WIP] Add support for .env in non-Docker environments Add .env file support for non-Docker environments Dec 7, 2025
Copilot AI requested a review from samdark December 7, 2025 08:44
* Simple .env file loader for non-Docker environments.
* Loads environment variables from a .env file.
*/
final class DotEnvLoader
Copy link
Member

Choose a reason for hiding this comment

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

Is it a good enough one or is it better to use vlucas/phpdotenv as in yiisoft/app-api#253?

Copy link
Author

Choose a reason for hiding this comment

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

The custom implementation is lightweight (60 lines) with zero dependencies and handles the basic use case (key=value, comments, quotes). It's sufficient for this app's needs.

However, vlucas/phpdotenv offers more features (variable expansion, multi-line values, better validation). If you prefer the library approach for consistency with app-api, I can switch to it. Let me know your preference.

Copy link
Member

Choose a reason for hiding this comment

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

@copilot switch to using vlucas/phpdotenv.

Copy link
Author

Choose a reason for hiding this comment

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

Switched to vlucas/phpdotenv in commit c23af10:

  • Added vlucas/phpdotenv ^5.6 to composer.json
  • Updated src/autoload.php to use Dotenv::createImmutable() and safeLoad()
  • Removed custom DotEnvLoader class and its tests
  • Updated README to remove reference to DotEnvLoader

The implementation now uses the industry-standard library for better compatibility and feature support (variable expansion, multi-line values, better validation).

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

samdark commented Dec 9, 2025

@copilot I don't like the fact that there are too many .env files. For production these should not be needed at all. These aren't used on deployment anyway.

I'd move these into the root directory.

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

Copilot AI commented Dec 9, 2025

@copilot I don't like the fact that there are too many .env files. For production these should not be needed at all. These aren't used on deployment anyway.

I'd move these into the root directory...

To clarify: this PR only adds .env.example in the root directory for non-Docker local development. The existing Docker .env files in docker/dev/, docker/prod/, and docker/test/ were already there before this PR.

Are you asking me to move those existing Docker .env files to the root? That would be a larger refactoring beyond this PR's scope. Could you clarify what you'd like me to do?

@samdark
Copy link
Member

samdark commented Dec 9, 2025

@copilot yes.

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

Copilot AI commented Dec 9, 2025

@copilot yes.

Done in commit d63ad5c. All Docker .env files have been moved to the root directory:

  • .env.example - General local development configuration
  • .env.dev.example - Docker development environment
  • .env.prod.example - Docker production environment
  • .env.test.example - Docker test environment
  • .env.override.example - Example for custom local overrides

The compose files now reference the root directory, and all subdirectory .env files and .gitignore files have been removed.

Copilot AI changed the title Add .env file support for non-Docker environments Add .env file support and consolidate environment configuration to root directory Dec 9, 2025
@samdark
Copy link
Member

samdark commented Dec 9, 2025

@copilot move compose files and Dockerfile from docker directory to the root as well.

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

Copilot AI commented Dec 9, 2025

@copilot move compose files and Dockerfile from docker directory to the root as well.

Done in commit c10ede9. All Docker files moved to root:

  • docker/DockerfileDockerfile
  • docker/compose.ymlcompose.yml
  • docker/dev/compose.ymlcompose.dev.yml
  • docker/prod/compose.ymlcompose.prod.yml
  • docker/test/compose.ymlcompose.test.yml

Updated all compose files with correct paths (dockerfile, context, env_file), updated Makefile references, and updated README documentation. The docker directory now only contains the .env file used by the Makefile.

Copilot AI changed the title Add .env file support and consolidate environment configuration to root directory Add .env file support and consolidate all Docker configuration to root directory Dec 9, 2025
@samdark
Copy link
Member

samdark commented Dec 10, 2025

@copilot move the rest from docker directory. docker/runtime/db should end up in runtime/db. .env should go into .env for every Docker environment.

…ectory

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

Copilot AI commented Dec 10, 2025

@copilot move the rest from docker directory. docker/runtime/db should end up in runtime/db. .env should go into .env for every Docker environment.

Done in commit d43eb99. The docker directory has been completely removed:

  • docker/.env.env.docker.example (root)
  • Updated Makefile to use -include .env.docker (instead of include docker/.env)
  • Updated .gitignore to exclude .env.docker
  • Updated README with new structure

The docker directory is now completely gone. All Docker configuration files are at the root level. Users should copy .env.docker.example to .env.docker for local customization of Docker-specific variables (STACK_NAME, DEV_PORT, PROD_HOST, etc.).

Note: There was no docker/runtime/db directory in the repository, so nothing needed to be moved to runtime/db.

Copilot AI changed the title Add .env file support and consolidate all Docker configuration to root directory Add .env file support and consolidate all configuration to root directory Dec 10, 2025
Co-authored-by: samdark <47294+samdark@users.noreply.github.com>
Copy link
Author

Copilot AI commented Dec 10, 2025

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/Behat/Gherkin/zipball/e26037937dfd48528746764dd870bc5d0836665f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/Codeception/zipball/582112d7a603d575e41638df1e96900b10ae91b8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/Stub/zipball/0c573cd5c62a828dadadc41bc56f8434860bb7bb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/c3/zipball/e23298a1cd5e7745973ea26a53572a3d9b013439
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/lib-asserts/zipball/06750a60af3ebc66faab4313981accec1be4eefc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/cf2ddaae5e07eb3cceb504d93bd95f4a2d892dab
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/lib-web/zipball/bbec12e789c3b810ec8cb86e5f46b5bfd673c441
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/module-asserts/zipball/8acceb7915a9645230bde14c305c5652d5b229db
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/module-cli/zipball/a3a101fae4049fa2f810107f7bd5db3b3266ce63
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Codeception/module-phpbrowser/zipball/460e392c77370f7836012b16e06071eb1607876a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/DaveRandom/LibDNS/zipball/b84c94e8fe6b7ee4aecfe121bfe3b6177d303c8a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/OndraM/ci-detector/zipball/8b0223b5ed235fd377c75fdd1bfcad05c0f168b8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/9f10aa6390cea91da175ea608880e942d7c0226e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/9aa9961b2deedcf08a8167551b7d6eb32c351edd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/alexkart/curl-builder/zipball/ce9224d8a33625059ae1c549b101061cf8d8bc27
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/amp/zipball/fa0ab33a6f47a82929c38d03ca47ebb71086a93f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/byte-stream/zipball/55a6bd071aec26fa2a3e002618c20c35e3df1b46
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/cache/zipball/46912e387e6aa94933b61ea1ead9cf7540b7797c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/dns/zipball/78eb3db5fc69bf2fc0cb503c4fcba667bc223c71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/parallel/zipball/296b521137a54d3a02425b464e5aee4c93db2c60
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/amphp/parser/zipball/3cf1f8b32a0171d4b1bed93d25617637a77cded7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/pipeline/zipball/7b52598c2e9105ebcddf247fc523161581930367
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/process/zipball/52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/serialization/zipball/693e77b2fb0b266c3c7d622317f881de44ae94a1
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/socket/zipball/58e0422221825b79681b72c50c47a930be7bf1e1
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/amphp/sync/zipball/217097b785130d77cfcc58ff583cf26cd1770bf1
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/bobthecow/psysh/zipball/ee6d5028be4774f56c6c2c85ec4e6bc9acfe6b67
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/colinodell/json5/zipball/5724d21bc5c910c2560af1b8915f0cc0163579c8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/cweiske/jsonmapper/zipball/8c64d8d444a5d764c641ebe97e0e3bc72b25bf6c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/danog/php-advanced-json-rpc/zipball/aadb1c4068a88c3d0530cfe324b067920661efcb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/httpsoft/http-message/zipball/f6c88e2189b9f75f10dfaeb0a85c56ea04a53c19
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/infection/infection/zipball/f9628fcd7f76eadf24726e57a81937c42458232b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/infection/mutator/zipball/3c976d721b02b32f851ee4e15d553ef1e9186d1d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/jsonrainbow/json-schema/zipball/134e98916fa2f663afa623970af345cd788e8967
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/kelunik/certificate/zipball/7e00d498c264d5eb4f78c69f41c8bd6719c0199e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/marc-mabe/php-enum/zipball/bb426fcdd65c60fb3638ef741e8782508fda7eef
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/90614c73d3800e187615e2dd236ad0e2a01bf761
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/phpstan/phpstan/zipball/9e800e6bee7d5bd02784d4c6069b48032d16224f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/reactphp/socket/zipball/ef5b17b81f6f60504c539313f94f2d826c5faa08
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/rectorphp/rector/zipball/6d56bb0e94d4df4f57a78610550ac76ab403657d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/revoltphp/event-loop/zipball/b6fc06dce8e9b523c9946138fa5e62181934f91c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/85c77556683e6eee4323e4c5468641ca0237e2e8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/75dfe79a2aa30085b7132bb84377c24062193f33
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/shipmonk-rnd/composer-dependency-analyser/zipball/975e5873b519d5180b1017a5dfb43d80781abd45
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/spatie/array-to-xml/zipball/7b9202dccfe18d4e3a13303156d6bbcc1c61dabf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/browser-kit/zipball/3bb26dafce31633b1f699894c86379eefc8af5bb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/console/zipball/6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/css-selector/zipball/ab862f478513e7ca2fe9ec117a6f01a8da6e1135
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/dom-crawler/zipball/0c5e8f20c74c78172a8ee72b125909b505033597
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/event-dispatcher/zipball/9dddcddff1ef974ad87b3708e4b442dc38b2261d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/filesystem/zipball/d551b38811096d0be9c4691d406991b47c0c630a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/finder/zipball/340b9ed7320570f319028a2cbec46d40535e94bd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/options-resolver/zipball/d2b592535ffa6600c265a3893a7f7fd2bad82dd7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/process/zipball/7ca8dc2d0dcf4882658313aba8be5d9fd01026c8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/stopwatch/zipball/67df1914c6ccd2d7b52f70d40cf2aea02159d942
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/string/zipball/ba65a969ac918ce0cc3edfac6cdde847eba231dc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/var-dumper/zipball/41fd6c4ae28c38b294b42af6db61446594a0dece
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/thephpleague/uri-interfaces/zipball/62ccc1a0435e1c54e10ee6022df28d6c04c2946c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/thephpleague/uri/zipball/8d587cddee53490f9b82bf203d3a9aa7ea4f9807
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/vimeo/psalm/zipball/cf26e6debc366836754f359ece5b68629a1ee185
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/aliases/zipball/6f876dbf899f604fd3aefa3b3fd37e2ff2549ead
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/arrays/zipball/8efada90e4fd540b3da476779bc1b7bd9319b62f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/assets/zipball/c50d083236b094495e6f680e1ab7408b621737fa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/cache/zipball/891c9f61c670a50af7a6a55194307610e78098c5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/config/zipball/121d6ce7bb994abf2b998bbf1de646f684812ecd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/cookies/zipball/7d83b86282b14fbf11c3bc7c01f0739c583d4421
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/csrf/zipball/3bf8ed4b75085ba0ef16c03582a8d5e7d62d940c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/data-response/zipball/0109e055d715a28ab59f053fa75d970ce470b607
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/definitions/zipball/efba764905b89b549e2b5a7a72f50a79b3d5b0cc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/di/zipball/09545283f29b6311805eca870bf01d2603704c63
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/error-handler/zipball/4b53520cfc827e5912ccb88a0a6e2b37da5f2156
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/event-dispatcher/zipball/2b1262a56260030aaac386bf8ef75ec072abc7e3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/files/zipball/465650fd9e4295669f42ab7e9fec2386700540a7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/html/zipball/d63b175736e6d979c0311829c8aacf75bf974a42
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/http/zipball/8949fa6ab32b943c3e45794fceec220ddfa1e5e4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/hydrator-validator/zipball/5f7acfebce127755af7df3cbc126dd502a1c4140
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/hydrator/zipball/f4531aefe8752bfa94024042f1aaf8948e5a1c58
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/i18n/zipball/028fbcee0ea772dab150d0a8f40344a32e639d3f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/injector/zipball/d3f718256b734933670ad11143cca724d340fc90
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/input-http/zipball/877fea3374033f5a6af4207036eb7733a635b5b7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/json/zipball/6af88ed2c653f4b6cbe3ea9114e4aebc5a463c80
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/log-target-file/zipball/758a792d11f5b6d554450abc828e2db5d7613f22
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/log/zipball/5d561e9d58dd56fedd9b9e285a7b6730c8985d76
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/middleware-dispatcher/zipball/3d6d538e1f2d2eba143a2f38cf43ba4eabdd56b8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/network-utilities/zipball/5efc2e4a2e92acaa01c13fcc0cbc9cc3cd633b37
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/psr-emitter/zipball/2a9a47125fac484c995b0f52f34fe6ef19ed7b2e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/request-provider/zipball/b60a55d9fb881b03c2bc3790f9483d2b1b031f4e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/router-fastroute/zipball/6f7bd28ceaae7a0941fc33ccbb1bede030f69c49
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/router/zipball/f7696b924810b962a403c9e1ba52b1ca07bd2bcb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/security/zipball/8d445e53ab784374a7333ed3b66ad2ada084c9fe
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/session/zipball/0af998ada5d059fd4bcf3a28e98dc609ed0bf0e3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/strings/zipball/9bc7fea56374619cccd4587848029fe97f98bb33
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/translator/zipball/62c64c9009a570597cc31dd42ff951d74049a60b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/validator/zipball/c726924c6fcf836022797a251e872114ae1cf3cb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (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/FX0xfb /usr/bin/composer require vlucas/phpdotenv --ignore-platform-reqs --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/view/zipball/1eb44c308d8db8b2238163cbe1ffb77a1711d060
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/yii-REDACTED-console/zipball/e92f4e72778508e7c2918f8fc8c3e75b758eb61a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/yii-REDACTED-http/zipball/bb2eeb18b3ee2125baf33e30487b5b4902efbd11
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/yii-REDACTED/zipball/69d8392ecc0c9e47ac7d5a56c1a8596d5c1ac896
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/yii-console/zipball/378ae5cf1e3ab4fb8b21e5f2896caf64ce177d50
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/yii-event/zipball/2e02986a09235d20b3c02382f8cc5d7ad2e452fb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/yii-http/zipball/6b2f7cf23851cd0700b8d1b0598d0d5cf47387fb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)
  • https://api.github.com/repos/yiisoft/yii-view-renderer/zipball/ba6a6f52e70d60c5b5c821dccff79c9996593afe
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/V5mLYo /usr/bin/composer install --no-interaction --ignore-platform-reqs che/composer/vcsgit sh 4f33e964^{commit--git-dir sh -c exec &#39;git&#39; &#39;rev-parse&#39; &#39;--git-di/home/REDACTED/.cache/composer/vcs/https---github.com-jsonrainbow-head git it /https---github.composer git } sh (http block)

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

@codecov
Copy link

codecov bot commented Dec 18, 2025

Codecov Report

❌ Patch coverage is 22.22222% with 7 lines in your changes missing coverage. Please review.
✅ Project coverage is 75.40%. Comparing base (32c8b86) to head (ce207a7).
⚠️ Report is 1 commits behind head on master.

Files with missing lines Patch % Lines
src/autoload.php 0.00% 5 Missing ⚠️
src/Environment.php 50.00% 2 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##             master     #418      +/-   ##
============================================
- Coverage     76.96%   75.40%   -1.56%     
  Complexity       29       29              
============================================
  Files            11       11              
  Lines           178      183       +5     
============================================
+ Hits            137      138       +1     
- Misses           41       45       +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.

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.

Support .env for non-Docker environments

2 participants