Skip to content

Upgrade to PHP 7.4+ and Symfony 4.4/5.4 with GitHub Actions - #13

Closed
rushi with Copilot wants to merge 8 commits into
masterfrom
copilot/upgrade-omnipaybundle-to-php-74
Closed

Upgrade to PHP 7.4+ and Symfony 4.4/5.4 with GitHub Actions#13
rushi with Copilot wants to merge 8 commits into
masterfrom
copilot/upgrade-omnipaybundle-to-php-74

Conversation

Copilot AI commented Nov 25, 2025

Copy link
Copy Markdown

Upgrades minimum PHP version to 7.4 and Symfony components to support both 4.4 and 5.4, removing support for legacy PHP 7.0-7.3 and Symfony 2.x-3.x. Migrates CI/CD from Travis CI to GitHub Actions.

Dependency Changes

composer.json:

  • PHP: >=7^7.4 || ^8.0
  • Symfony components: >=2.1^4.4 || ^5.4 (framework-bundle, dependency-injection, config, http-kernel, yaml)
  • PHPUnit: ^6^9.5

Code Updates

TreeBuilder (Configuration.php):

// Before: Symfony 2.x style
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('omnipay');

// After: Symfony 4.4+ style
$treeBuilder = new TreeBuilder('omnipay');
$rootNode = $treeBuilder->getRootNode();

Service Configuration (services.yml):

  • Removed parameter bag syntax (%omnipay.service.class%)
  • Direct class reference with modern YAML array syntax

PHPUnit Configuration:

  • Updated to PHPUnit 9.5 XSD schema
  • Removed deprecated syntaxCheck attribute

CI/Testing

GitHub Actions (.github/workflows/ci.yml):

  • Replaced Travis CI with GitHub Actions
  • PHP version: 7.4 only
  • Symfony versions: 4.4, 5.4
  • Added explicit permissions block for security best practices
  • Includes dependency caching and composer validation

Removed:

  • .travis.yml file

Updated:

  • README.md badge now points to GitHub Actions workflow status

Test Results

All 21 tests passing with 72 assertions on both Symfony 4.4 and 5.4. Two PHPUnit 9 deprecation warnings for at() matcher usage (PHPUnit 10 compatibility).

[!WARNING]

This pull request was created as a result of the following prompt from Copilot chat.

Objective

Upgrade the OmnipayBundle repository to support PHP 7.4 and Symfony 5.4.

Requirements

PHP Version

  • Update minimum PHP version to 7.4
  • Update composer.json to require PHP ^7.4 || ^8.0
  • Update any PHP version constraints in configuration files

Symfony Version

  • Upgrade Symfony components to version 5.4
  • Update all Symfony dependencies in composer.json to ^5.4
  • This includes but is not limited to:
    • symfony/framework-bundle
    • symfony/dependency-injection
    • symfony/config
    • symfony/http-kernel
    • Any other Symfony components used

Code Updates

  • Update any deprecated code patterns that are no longer compatible with Symfony 5.4
  • Update service configurations if needed (YAML/XML files)
  • Update any bundle configuration to be compatible with Symfony 5.4
  • Ensure dependency injection follows Symfony 5.4 best practices
  • Update namespace imports if needed

Testing Configuration

  • Update PHPUnit configuration if present to be compatible with PHP 7.4+
  • Update CI/CD configuration files (e.g., .travis.yml, .github/workflows, etc.) to test against PHP 7.4 and Symfony 5.4
  • Ensure all tests pass with the new versions

Documentation

  • Update README.md to reflect new PHP and Symfony version requirements
  • Update any installation or compatibility documentation

Additional Considerations

  • Check for any breaking changes in Symfony 5.4 migration guides
  • Ensure all Omnipay dependencies are compatible with the new versions
  • Update lockfile by running composer update
  • Verify backward compatibility where possible

Testing

After making changes, ensure:

  • Composer dependencies resolve correctly
  • All existing tests pass
  • Bundle can be properly loaded in a Symfony 5.4 application
Original prompt

Objective

Upgrade the OmnipayBundle repository to support PHP 7.4 and Symfony 5.4.

Requirements

PHP Version

  • Update minimum PHP version to 7.4
  • Update composer.json to require PHP ^7.4 || ^8.0
  • Update any PHP version constraints in configuration files

Symfony Version

  • Upgrade Symfony components to version 5.4
  • Update all Symfony dependencies in composer.json to ^5.4
  • This includes but is not limited to:
    • symfony/framework-bundle
    • symfony/dependency-injection
    • symfony/config
    • symfony/http-kernel
    • Any other Symfony components used

Code Updates

  • Update any deprecated code patterns that are no longer compatible with Symfony 5.4
  • Update service configurations if needed (YAML/XML files)
  • Update any bundle configuration to be compatible with Symfony 5.4
  • Ensure dependency injection follows Symfony 5.4 best practices
  • Update namespace imports if needed

Testing Configuration

  • Update PHPUnit configuration if present to be compatible with PHP 7.4+
  • Update CI/CD configuration files (e.g., .travis.yml, .github/workflows, etc.) to test against PHP 7.4 and Symfony 5.4
  • Ensure all tests pass with the new versions

Documentation

  • Update README.md to reflect new PHP and Symfony version requirements
  • Update any installation or compatibility documentation

Additional Considerations

  • Check for any breaking changes in Symfony 5.4 migration guides
  • Ensure all Omnipay dependencies are compatible with the new versions
  • Update lockfile by running composer update
  • Verify backward compatibility where possible

Testing

After making changes, ensure:

  • Composer dependencies resolve correctly
  • All existing tests pass
  • Bundle can be properly loaded in a Symfony 5.4 application

This pull request was created as a result of the following prompt from Copilot chat.

Objective

Upgrade the OmnipayBundle repository to support PHP 7.4 and Symfony 5.4.

Requirements

PHP Version

  • Update minimum PHP version to 7.4
  • Update composer.json to require PHP ^7.4 || ^8.0
  • Update any PHP version constraints in configuration files

Symfony Version

  • Upgrade Symfony components to version 5.4
  • Update all Symfony dependencies in composer.json to ^5.4
  • This includes but is not limited to:
    • symfony/framework-bundle
    • symfony/dependency-injection
    • symfony/config
    • symfony/http-kernel
    • Any other Symfony components used

Code Updates

  • Update any deprecated code patterns that are no longer compatible with Symfony 5.4
  • Update service configurations if needed (YAML/XML files)
  • Update any bundle configuration to be compatible with Symfony 5.4
  • Ensure dependency injection follows Symfony 5.4 best practices
  • Update namespace imports if needed

Testing Configuration

  • Update PHPUnit configuration if present to be compatible with PHP 7.4+
  • Update CI/CD configuration files (e.g., .travis.yml, .github/workflows, etc.) to test against PHP 7.4 and Symfony 5.4
  • Ensure all tests pass with the new versions

Documentation

  • Update README.md to reflect new PHP and Symfony version requirements
  • Update any installation or compatibility documentation

Additional Considerations

  • Check for any breaking changes in Symfony 5.4 migration guides
  • Ensure all Omnipay dependencies are compatible with the new versions
  • Update lockfile by running composer update
  • Verify backward compatibility where possible

Testing

After making changes, ensure:

  • Composer dependencies resolve correctly
  • All existing tests pass
  • Bundle can be properly loaded in a Symfony 5.4 application

✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot AI and others added 3 commits November 25, 2025 07:57
Co-authored-by: rushi <65708+rushi@users.noreply.github.com>
Co-authored-by: rushi <65708+rushi@users.noreply.github.com>
Co-authored-by: rushi <65708+rushi@users.noreply.github.com>
Copilot AI changed the title [WIP] Upgrade OmnipayBundle to support PHP 7.4 and Symfony 5.4 Upgrade to PHP 7.4+ and Symfony 5.4 Nov 25, 2025
Copilot AI requested a review from rushi November 25, 2025 08:10
@rushi

rushi commented Nov 25, 2025

Copy link
Copy Markdown
Member

@copilot Update it so it supports Symfony 4.4 AND Symfony 5.4

Co-authored-by: rushi <65708+rushi@users.noreply.github.com>

Copilot AI commented Nov 25, 2025

Copy link
Copy Markdown
Author

@copilot Update it so it supports Symfony 4.4 AND Symfony 5.4

Updated to support both Symfony 4.4 and 5.4. All Symfony dependencies now use ^4.4 || ^5.4 constraint. Tests pass with both versions (21 tests, 72 assertions each). CI configuration updated to test against Symfony 4.4, 5.4, and 6.0. (f1d8165)

Warning

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

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

  • https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/moneyphp/money/zipball/b358727ea5a5cd2d7475e59c31dfc352440ae7ec
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/3a454ca033b9e06b63282ce19562e892747449bb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/client-common/zipball/0cfe9858ab9d3b213041b947c881d5b19ceeca46
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/logger-plugin/zipball/4a2b447a5ba1a95c3869512ee992f5ba7fd9aa5f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9ecfec57835a5581bc888ea7e13b51eb55ab9dd3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/cache-contracts/zipball/517c3a3619dadfa6952c4651767fcadffb4df65e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/cache/zipball/0fe08ee32cec2748fbfea10c52d3ee02049e0f6b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/cache/zipball/31628f36fc97c5714d181b3a8d29efb85c6a7677
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/config/zipball/977c88a02d7d3f16904a81907531b19666a08e78
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/dependency-injection/zipball/e5ca16dee39ef7d63e552ff0bf0a2526a1142c92
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/error-handler/zipball/93a8400a7eaaaf385b2d6f71e30e064baa639629
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/761c8b8387cfe5f8026594a75fdf0a4e83ba6974
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/event-dispatcher/zipball/b0cf3162020603587363f0551cd3be43958611ff
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/filesystem/zipball/57c8294ed37d4a055b77057827c67f9558c95c54
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/filesystem/zipball/75ae2edb7cdcc0c53766c30b0a2512b8df574bd8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/finder/zipball/a1b6aa435d2fba50793b994a839c32b6064f063b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/framework-bundle/zipball/3d70f14176422d4d8ee400b6acae4e21f7c25ca2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/framework-bundle/zipball/8f1698ff2a97be8442fb202ac93111f7b6b40781
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-client-contracts/zipball/48ef1d0a082885877b664332b9427662065a360c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-foundation/zipball/1a0706e8b8041046052ea2695eb8aeee04f97609
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-foundation/zipball/b03d11e015552a315714c127d8d1e0f9e970ec88
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/http-kernel/zipball/2fe5cf994d7e1e189258b7f7d3395cc5999a9762
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/options-resolver/zipball/0ff2f5c3df08a395232bbc3c2eb7e84912df911d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (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/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/routing/zipball/dd8556e52717bd8559fdac8e9090388be1e2eba7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/var-dumper/zipball/cfae1497a2f1eaad78dbc0590311c599c7178d4a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/var-exporter/zipball/0f020b544a30a7fe8ba972e53ee48a74c0bc87f4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
  • https://api.github.com/repos/symfony/yaml/zipball/a454d47278cc16a5db371fe73ae66a78a633371e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-authorizenet/zipball/8ccce3190c00d0a129c62dc1d1451d0125bab640
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-common/zipball/83552de28815c5e46f66360c4d52c3a82a7d5efc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-eway/zipball/8dfae5e6f438a1b18742348104f9f5d6a2486760
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-mollie/zipball/e9231442b67315017ec14ae3b0e13ff619276fd8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-paymentexpress/zipball/c4b2e6618f8d5fe023a60fcfe390fe7e68c6cbdf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-paypal/zipball/519db61b32ff0c1e56cbec94762b970ee9674f65
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-sagepay/zipball/570df6b7f47dc39635132723eb8cb8c474138a67
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-securepay/zipball/f1dc0d1e41b41baccc42cb1202f650be8121878f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-stripe/zipball/20812498efedc1079baae5fea96567fefd669105
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/thephpleague/omnipay-worldpay/zipball/812a11d64e8b68690d8c8841ff0056f9aa0f605c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Fl5MEz /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/9p5jgj /usr/bin/composer update --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/33UoYz /usr/bin/composer update --no-interaction --global --all credential.helper (http block)

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

Copilot AI changed the title Upgrade to PHP 7.4+ and Symfony 5.4 Upgrade to PHP 7.4+ and Symfony 4.4/5.4 Nov 25, 2025
@rushi

rushi commented Nov 25, 2025

Copy link
Copy Markdown
Member

@copilot Remove the .travis.yml file and convert it to github actions. Test it with PHP 7.4 only

Co-authored-by: rushi <65708+rushi@users.noreply.github.com>

Copilot AI commented Nov 25, 2025

Copy link
Copy Markdown
Author

@copilot Remove the .travis.yml file and convert it to github actions. Test it with PHP 7.4 only

Converted to GitHub Actions with PHP 7.4 only. Removed .travis.yml and created .github/workflows/ci.yml that tests against Symfony 4.4, 5.4, and 6.0. Updated README with GitHub Actions badge. (bf700dd)

Warning

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

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

  • https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/moneyphp/money/zipball/b358727ea5a5cd2d7475e59c31dfc352440ae7ec
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/client-common/zipball/0cfe9858ab9d3b213041b947c881d5b19ceeca46
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/logger-plugin/zipball/4a2b447a5ba1a95c3869512ee992f5ba7fd9aa5f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9ecfec57835a5581bc888ea7e13b51eb55ab9dd3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/cache/zipball/31628f36fc97c5714d181b3a8d29efb85c6a7677
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/config/zipball/977c88a02d7d3f16904a81907531b19666a08e78
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/dependency-injection/zipball/e5ca16dee39ef7d63e552ff0bf0a2526a1142c92
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/filesystem/zipball/75ae2edb7cdcc0c53766c30b0a2512b8df574bd8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/finder/zipball/a1b6aa435d2fba50793b994a839c32b6064f063b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/framework-bundle/zipball/3d70f14176422d4d8ee400b6acae4e21f7c25ca2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-foundation/zipball/b03d11e015552a315714c127d8d1e0f9e970ec88
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/options-resolver/zipball/0ff2f5c3df08a395232bbc3c2eb7e84912df911d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (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/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/routing/zipball/dd8556e52717bd8559fdac8e9090388be1e2eba7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/var-exporter/zipball/0f020b544a30a7fe8ba972e53ee48a74c0bc87f4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/yaml/zipball/a454d47278cc16a5db371fe73ae66a78a633371e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-authorizenet/zipball/8ccce3190c00d0a129c62dc1d1451d0125bab640
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-common/zipball/83552de28815c5e46f66360c4d52c3a82a7d5efc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-eway/zipball/8dfae5e6f438a1b18742348104f9f5d6a2486760
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-mollie/zipball/e9231442b67315017ec14ae3b0e13ff619276fd8
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-paymentexpress/zipball/c4b2e6618f8d5fe023a60fcfe390fe7e68c6cbdf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-paypal/zipball/519db61b32ff0c1e56cbec94762b970ee9674f65
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-sagepay/zipball/570df6b7f47dc39635132723eb8cb8c474138a67
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-securepay/zipball/f1dc0d1e41b41baccc42cb1202f650be8121878f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-stripe/zipball/20812498efedc1079baae5fea96567fefd669105
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-worldpay/zipball/812a11d64e8b68690d8c8841ff0056f9aa0f605c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/mqvKkM /usr/bin/composer install --no-interaction (http block)

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

Copilot AI and others added 2 commits November 25, 2025 08:40
Co-authored-by: rushi <65708+rushi@users.noreply.github.com>
Co-authored-by: rushi <65708+rushi@users.noreply.github.com>
Copilot AI changed the title Upgrade to PHP 7.4+ and Symfony 4.4/5.4 Upgrade to PHP 7.4+ and Symfony 4.4/5.4 with GitHub Actions Nov 25, 2025
@rushi
rushi changed the base branch from master to symfony-5.4 November 26, 2025 08:10
@rushi
rushi changed the base branch from symfony-5.4 to master November 26, 2025 08:11
@rushi rushi closed this Dec 25, 2025
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.

2 participants