[Feature] - Ajoute des tests phpunit et mise à jour des composants applicatifs#41
Conversation
13acb31 to
f052434
Compare
There was a problem hiding this comment.
Pull request overview
This PR substantially increases automated test coverage across the Symfony/API Platform application by adding many new unit and functional tests for entities, filters, state providers, serializers, and utility components.
Changes:
- Added/expanded unit tests for entities (getters/setters, collections, edge-case logic) and infrastructure utilities (paginator, file processor).
- Added unit tests for state providers and serializer normalizers to cover guard/exception branches.
- Added functional tests covering API Platform filters and
/api/docs.json(filter descriptions + OpenAPI decorator schemas).
Reviewed changes
Copilot reviewed 25 out of 25 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/Unit/StateProvider/StateProviderTest.php | Unit tests for provider guard branches (unsupported operations) and linked specialties provider result. |
| tests/Unit/StateProvider/BirthPlacesProviderTest.php | Unit tests for BirthPlacesProvider null/exception guard branches. |
| tests/Unit/Service/FileProcessorTest.php | Expanded FileProcessor unit tests (existing file/zip handling) with temp-dir lifecycle helpers. |
| tests/Unit/Serializer/TranslatableEntityNormalizerTest.php | Tests supported types and supportsNormalization guard logic. |
| tests/Unit/Serializer/SerialisationGroupGeneratorTest.php | Tests group generation and filtering of “unknown” values. |
| tests/Unit/Serializer/Cim11ModifierNormalizerTest.php | Tests normalizer supports/normalize behavior and already-called guard. |
| tests/Unit/OpenApi/PhoneDecoratorTest.php | Tests OpenAPI decorator adds Token/PhoneNumber schemas. |
| tests/Unit/Filter/RPPSFilterTest.php | Tests parseBooleanValue true/false/null paths. |
| tests/Unit/ApiPlatform/DtoPaginatorTest.php | Unit tests for pagination math and slicing behavior. |
| tests/Unit/Entity/*.php | Adds broad unit coverage for many entities (collections, normalization, parsing, string casts, etc.). |
| tests/Functional/CityFilterTest.php | Functional coverage for geolocation and exclude-subcities filters. |
| tests/Functional/SpecialtyFilterTest.php | Functional coverage for excluded_specialties and is_paramedical filter paths. |
| tests/Functional/ApiDocsTest.php | Functional coverage for OpenAPI JSON docs + decorator schema presence. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| use ApiPlatform\Metadata\Get; | ||
| use ApiPlatform\Metadata\GetCollection; | ||
| use App\Entity\City; |
There was a problem hiding this comment.
use App\Entity\City; is not used in this test class. With the repo’s PHP-CS-Fixer @Symfony rules (includes no_unused_imports), this will cause the style check to fail; remove the unused import.
| use App\Entity\City; |
| $cim11->setChildren($children); | ||
| $this->assertCount(0, $cim11->getChildren()); | ||
|
|
||
| $this->assertSame('CA00.0', (string) $cim11); |
There was a problem hiding this comment.
Cim11::__toString() returns the entity name (getName()), but this test asserts it returns the code (CA00.0). This will fail; update the assertion to match the current __toString() behavior (or, if the intended behavior is code, adjust the entity instead).
| $this->assertSame('CA00.0', (string) $cim11); | |
| $this->assertSame('Rhinopharyngite aigüe', (string) $cim11); |
| $ccam->setRegroupementCode('ATM'); | ||
| $this->assertSame('ATM', $ccam->getRegroupementCode()); | ||
|
|
||
| $this->assertSame('AHQP001', (string) $ccam); |
There was a problem hiding this comment.
CCAM::__toString() returns the CCAM name (getName()), but this test expects the string cast to equal the code (AHQP001). As written, the assertion will fail; adjust it to assert on the name (or change __toString() if code is intended).
| $this->assertSame('AHQP001', (string) $ccam); | |
| $this->assertSame('Électromyographie par électrode de surface', (string) $ccam); |
Co-authored-by: Xusifob <8103268+Xusifob@users.noreply.github.com>
…roviders Co-authored-by: Xusifob <8103268+Xusifob@users.noreply.github.com>
…orts in FileProcessorTest Co-authored-by: Xusifob <8103268+Xusifob@users.noreply.github.com>
f052434 to
d16e71c
Compare
The test suite had 8 failures/errors, all caused by incorrect test expectations rather than bugs in the entities: - CCAM, Cim11 and Drug assert __toString() returns the code, but all three return the name (Drug returns getShortName()). - PhoneDecoratorTest mocked ApiPlatform's Components, which is final. Rebuilt on real objects. - FileProcessorTest stubbed LoggerInterface::info() with willReturn(null), which Prophecy rejects on a void return type. - ApiDocsTest requested /api/docs.json; API Platform 4 serves jsonopenapi. Fixing the InseeTest filename/class mismatch revealed that PHPUnit's directory scan only instantiates the class matching the filename, so seven test classes added by this PR never ran. Split each into its own file (150 -> 162 tests). One of them, Cim11ModifierValueTest, called a getModifiers() method that does not exist; rewritten against the real API, asserting the bidirectional sync via Cim11Modifier::getValues(). Also cleared every deprecation: - Removed setAccessible() calls (no-ops since PHP 8.1, deprecated in 8.5). - Upgraded api-platform/core 4.2.16 -> 4.3.16 to fix a null array offset in OrderFilter::apply(). No 4.2 backport exists. - Upgraded liip/test-fixtures-bundle ^2 -> ^3 (require-dev) to fix an implicit nullable parameter that CI hit on every cold-cache run. - Migrated phpunit.xml.dist to the current schema. Ran php-cs-fixer repo-wide (34 files). Excluded the auto-generated config/reference.php, where phpdoc_tag_type rewrites the documented JSON-LD "@type" key to "@var", and untracked it since Symfony regenerates it on cache warm. Verified on a cold cache: phpunit OK (162 tests, 1284 assertions), phpcs, phpstan -l 6 src/ and php-cs-fixer all exit 0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
composer.json requires ext-zip and FileProcessor uses ZipArchive, but the workflow only installed xdebug/mbstring/xml/iconv/intl. The composer step passes --ignore-platform-reqs, so the missing extension went unnoticed. testGetFilesWithExistingZip never reached its ZipArchive call before, because a Prophecy void-return error aborted the test first. Fixing that error exposed the gap: CI failed with 'Class "ZipArchive" not found'. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Coverage was significantly below par across nearly every layer of the application — entities, API Platform filters, state providers, serializers, and utilities — with many methods at 0% and others only partially covered.
Entity Unit Tests
New
tests/Unit/Entity/tests covering all getters/setters, collection management, and edge-case logic for:RPPS— address normalization,getFullNameWithTitle(), city/specialty entity resolution, addresses collectionCity— sub-city hierarchy,matchesName(),isMainCity()/isSubCity(), coordinatesRPPSAddress— MD5 computation,syncCoordinatesFromLatLong(), city name fallbackAllergen— fullTranslatableTraitcoverage (getTranslationsForLang,getAllTranslationsForField, language fallback)Disease/DiseaseGroup—setSex()string parsing (M/W/9),setLowerAgeLimit()(9999,tj,jformats)CCAM/CCAMGroup,Cim11/Cim11Modifier/Cim11ModifierValue,Drug,Specialty,Department,Region,InseeCommune/1943,InseePays/1943,TranslationFunctional Filter Tests
CityFilterTest— latitude/longitude proximity filter,exclude_subcities, missing-longitude graceful fallbackSpecialtyFilterTest—excluded_specialties(single and multi),is_paramedicalwith invalid value (null-on-failure path)ApiDocsTest— hits/api/docs.json, drivinggetDescription()on all registered filters andPhoneDecorator::buildSchemas()State Provider Unit Tests
Exception/guard branches not reachable via HTTP:
Same pattern applied to
SimilarCitiesProvider,SubCitiesProvider,SimilarSpecialtiesProvider.Other Unit Tests
DtoPaginatorTest— all pagination math includinggetItemsPerPage(), empty collection, last-page partial sliceFileProcessorTest—getFiles()with pre-existing file (skips download),getFile(),getFiles()with real zip extractionRPPSFilterTest—parseBooleanValue()static method (true/false/null paths)Cim11ModifierNormalizerTest—normalize(),supportsNormalization()branches (already-called guard, non-modifier type)TranslatableEntityNormalizerTest—getSupportedTypes(), missing-groups early return, already-called guardSerialisationGroupGeneratorTest—buildGroups()with all-unknown defaults (verifies filter removes them) and known valuesPhoneDecoratorTest—__invoke()+buildSchemas()via mock OpenApi factoryWarning
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/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/883b20fb38c7866de9844ab6d0a205c423bde2d4/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0ca86845ce43291e8f5692c7356fccf3bcf02bf4/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/api-platform/core/zipball/edc7a37d9f274c9c47ef23fc3c3cf587e8c92477/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/cocur/slugify/zipball/a860dab2b9f5f37775fc6414d4f049434848165f/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/DoctrineBundle/zipball/0ff098b29b8b3c68307c8987dcaed7fd829c6546/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/4c3dfcc819ba2725a574f4286aa3f6459f582d5b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1e380c6dd8ac8488217f39cff6b77e367f1a644b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/data-fixtures/zipball/7a615ba135e45d67674bb623d90f34f6c7b6bd97/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/dbal/zipball/63a46cb5aa6f60991186cc98c1d1b50c09311868/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/instantiator/zipball/23da848e1a2308728fe5fdddabf4be17ff9720c7/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/migrations/zipball/ffd8355cdd8505fc650d9604f058bf62aedd80a1/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/orm/zipball/4262eb495b4d2a53b45de1ac58881e0091f2970f/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/persistence/zipball/d59e6ef7caffe6a30f4b6f9e9079a75f52c64ae0/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/doctrine/sql-formatter/zipball/9563949f5cd3bd12a17d12fb980528bc141c5806/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/getsentry/sentry-php/zipball/d7264b972e5f87110492376ade1cc20cbc049345/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/getsentry/sentry-symfony/zipball/e82559a078b26c8f8592289e98a25b203527a9c6/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/giggsey/Locale/zipball/1cd8b3ad2d43e04f4c2c6a240495af44780f809b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/6e28b3d53cf96d7f41c83d9b80b6021ecbd00537/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/liip/LiipFunctionalTestBundle/zipball/8c9176666cd70bb0c5fc2e10a9d77f8136f6a851/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/liip/LiipTestFixturesBundle/zipball/45b1961d2a19d4cbb61d45bb756e9a152d43624b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/3d80dbcd5d1eb5f8b20ed5199e1778d44c2e4d1c/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/d8fccfb56ff012fcc04aa580d60e0bead29df4b1/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/5cee1d3dfc2d2aa6599834520911d246f656bcb8/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/89f91b01d0640b7820e427e02a007bc6489d8a26/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phpspec/prophecy/zipball/7ab965042096282307992f1b9abff020095757f0/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/phpstan/phpstan/zipball/2770dcdf5078d0b0d53f94317e06affe88419aa8/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/reactphp/child-process/zipball/970f0e71945556422ee4570ccbabaedc3cf04ad3/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/reactphp/socket/zipball/ef5b17b81f6f60504c539313f94f2d826c5faa08/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/rectorphp/rector/zipball/015935c7ed9e48a4f5895ba974f337e20a263841/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/comparator/zipball/55dfef806eb7dfeb6e7a6935601fef866f8ca48d/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/exporter/zipball/0735b90f4da94969541dac1da743446e276defa6/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/phpunit/zipball/33198268dad71e926626b618f3ec3966661e4d90/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/47e34210757a2f37a97dcd207d032e1b01e64c7a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/asset/zipball/a6f49cf087a1fcfe7130b9b604a8a2b878b06c40/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/browser-kit/zipball/bed167eadaaba641f51fc842c9227aa5e251309e/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/cache/zipball/8dde98d5a4123b53877aca493f9be57b333f14bd/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/clock/zipball/9169f24776edde469914c1e7a1442a50f7a4e110/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/config/zipball/4275b53b8ab0cf37f48bf273dc2285c8178efdfb/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/console/zipball/41e38717ac1dd7a46b6bda7d6a82af2d98a78894/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/css-selector/zipball/ab862f478513e7ca2fe9ec117a6f01a8da6e1135/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/debug-bundle/zipball/329383fb895353e3c8ab792cc35c4a7e7b17881b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/dependency-injection/zipball/76a02cddca45a5254479ad68f9fa274ead0a7ef2/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/doctrine-bridge/zipball/3408d9fb7bda6c8db9f3e4099863c9017bcbc62d/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/dom-crawler/zipball/71fd6a82fc357c8b5de22f78b228acfc43dee965/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/dotenv/zipball/1658a4d34df028f3d93bcdd8e81f04423925a364/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/error-handler/zipball/8da531f364ddfee53e36092a7eebbbd0b775f6b8/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/event-dispatcher/zipball/dc2c0eba1af673e736bb851d747d266108aea746/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/expression-language/zipball/f3a6497eb6573e185f2ec41cd3b3f0cd68ddf667/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/filesystem/zipball/d551b38811096d0be9c4691d406991b47c0c630a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/finder/zipball/ad4daa7c38668dcb031e63bc99ea9bd42196a2cb/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/flex/zipball/9cd384775973eabbf6e8b05784dda279fc67c28d/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/framework-bundle/zipball/dcf89ca6712d9e1b5d3f14dea0e1c2685a05d1cd/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/http-client/zipball/84bb634857a893cc146cceb467e31b3f02c5fe9f/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/http-foundation/zipball/446d0db2b1f21575f1284b74533e425096abdfb6/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/http-kernel/zipball/229eda477017f92bd2ce7615d06222ec0c19e82a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/intl/zipball/7fa2d46174166bcd7829abc8717949f8a0b21fb7/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/maker-bundle/zipball/b5b4afa2a570b926682e9f34615a6766dd560ff4/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/options-resolver/zipball/b38026df55197f9e39a44f3215788edf83187b80/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/password-hasher/zipball/ab8e0ef42483f31c417c82ecfcf7be7b91d784fe/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/phpunit-bridge/zipball/f933e68bb9df29d08077a37e1515a23fea8562ab/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/property-access/zipball/fa49bf1ca8fce1ba0e2dba4e4658554cfb9364b1/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/property-info/zipball/1c9d326bd69602561e2ea467a16c09b5972eee21/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/929ffe10bbfbb92e711ac3818d416f9daffee067/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/routing/zipball/0798827fe2c79caeed41d70b680c2c3507d10147/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/security-bundle/zipball/7281b644c76985ddf3927f5e65152b0cc29d175b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/security-core/zipball/958a70725a8d669bec6721f4cd318d209712e944/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/security-csrf/zipball/06a2a2f90f355b8b4ec23685fa6ceff8d5dc41cc/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/security-http/zipball/9d41a473637bf5d074c5f5a73177fd9d769407fd/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/serializer/zipball/480cd1237c98ab1219c20945b92c9d4480a44f47/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/stopwatch/zipball/8a24af0a2e8a872fb745047180649b8418303084/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/string/zipball/1c4b10461bf2ec27537b5f36105337262f5f5d6f/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/translation/zipball/bfde13711f53f549e73b06d27b35a55207528877/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/twig-bridge/zipball/f2dd26b604e856476ef7e0efa4568bc07eb7ddc8/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/twig-bundle/zipball/e8829e02ff96a391ed0703bac9e7ff0537480b6b/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/type-info/zipball/f83c725e72b39b2704b9d6fc85070ad6ac7a5889/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/uid/zipball/7719ce8aba76be93dfe249192f1fbfa52c588e36/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/validator/zipball/fcec92c40df1c93507857da08226005573b655c6/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/var-dumper/zipball/0e4769b46a0c3c62390d124635ce59f66874b282/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/var-exporter/zipball/03a60f169c79a28513a78c967316fbc8bf17816f/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/web-link/zipball/9ff1f19069e3d2d341d60729392a4a6dfc45052a/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/web-profiler-bundle/zipball/be165e29e6109efb89bfaefe56e3deccf72a8643/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/twigphp/Twig/zipball/a64dc5d2cc7d6cafb9347f6cd802d0d06d0351c9/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/webmozarts/assert/zipball/b39f1870fc7c3e9e4a26106df5053354b9260a33/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/oo5UqB /usr/bin/composer install --no-interaction --ignore-platform-reqs(http block)/usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Swtq5G /usr/bin/composer install --ignore-platform-reqs -q --quiet --verify 711ac3818d416f9d--noprofile bash --no�� --noprofile git /usr/local/bin/iptables en --verify it iptables(http block)If you need me to access, download, or install something from one of these locations, you can either:
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.