Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Requiring new package runs into a timeout #11190

Closed
CDRO opened this issue Nov 17, 2022 · 6 comments
Closed

Requiring new package runs into a timeout #11190

CDRO opened this issue Nov 17, 2022 · 6 comments
Labels

Comments

@CDRO
Copy link
Contributor

CDRO commented Nov 17, 2022

My composer.json:

{
	"minimum-stability": "dev",
	"prefer-stable": true,
	"config": {
		"preferred-install": {
			"cabag/*": "source",
			"*": "dist"
		},
		"optimize-autoloader": true,
		"platform": {
			"php": "8.0"
		},
		"sort-packages": true,
		"allow-plugins": {
			"typo3/class-alias-loader": true,
			"typo3/cms-composer-installers": true,
			"cweagans/composer-patches": true,
			"helhum/dotenv-connector": true
		}
	},
	"repositories": [
		{
			"type": "composer",
			"url": "https://repo.packagist.com/cabag/"
		}
	],
	"name": "cabag/project-ci-relaunch-customer",
	"description": "TYPO3 CMS Base Distribution",
	"license": "GPL-2.0-or-later",
	"require": {
		"b13/justincase": "^1.1",
		"cabag/ext-customer": "dev-master",
		"cweagans/composer-patches": "^1.7",
		"evoweb/recaptcha": "^11.0",
		"helhum/dotenv-connector": "^3.0",
		"helhum/typo3-console": "^7.0",
		"lochmueller/staticfilecache": "^12.3",
		"t3monitor/t3monitoring_client": "^9.2",
		"typo3/cms-about": "*",
		"typo3/cms-adminpanel": "*",
		"typo3/cms-belog": "*",
		"typo3/cms-beuser": "*",
		"typo3/cms-core": "*",
		"typo3/cms-filemetadata": "*",
		"typo3/cms-form": "*",
		"typo3/cms-frontend": "*",
		"typo3/cms-lowlevel": "*",
		"typo3/cms-opendocs": "*",
		"typo3/cms-recycler": "*",
		"typo3/cms-redirects": "*",
		"typo3/cms-rte-ckeditor": "*",
		"typo3/cms-scheduler": "*",
		"typo3/cms-seo": "*",
		"typo3/cms-setup": "*",
		"typo3/cms-tstemplate": "*",
		"typo3/cms-viewpage": "*",
		"typo3/minimal": "^11"
	},
	"require-dev": {
		"typo3/cms-info": "*",
		"typo3/cms-reports": "*"
	},
	"conflict": {
		"typo3/cms": "*"
	},
	"extra": {
		"composer-exit-on-patch-failure": true,
		"patches": {},
		"typo3/cms": {
			"web-dir": "web/",
			"cms-package-dir": "{$vendor-dir}/typo3/cms"
		},
		"helhum/dotenv-connector": {
			"env-file": "config/env/.env"
		}
	},
	"scripts": {
		"security-check": "cd ..; ./local-php-security-checker --path=src/composer.lock",
		"typo3-cms-scripts": [
			"cd ../docker/; docker-compose exec -T php rm -rf ../var/cache/*",
			"cd ../docker/; docker-compose exec -T php ../vendor/bin/typo3cms install:fixfolderstructure",
			"cd ../docker/; docker-compose exec -T php ../vendor/bin/typo3cms database:updateschema '*'",
			"cd ../docker/; docker-compose exec -T php ../vendor/bin/typo3cms cache:flush",
			"cd ../docker/; docker-compose exec -T php ../vendor/bin/typo3cms cache:warmup"
		],
		"post-update-cmd": [
			"@typo3-cms-scripts"
		]
	}
}

Output of composer diagnose:

Checking platform settings: OK
Checking git settings: OK git version 2.38.1
Checking http connectivity to packagist: OK
Checking https connectivity to packagist: OK
Checking github.com oauth access: OK
Checking disk free space: OK
Checking pubkeys: 
Tags Public Key Fingerprint: 57815BA2 7E54DC31 7ECC7CC5 573090D0  87719BA6 8F3BB723 4E5D42D0 84A14642
Dev Public Key Fingerprint: 4AC45767 E5EC2265 2F0C1167 CBBB8A2B  0C708369 153E328C AD90147D AFE50952
OK
Checking composer version: OK
Composer version: 2.4.4
PHP version: 7.4.33
PHP binary path: /usr/local/Cellar/php@7.4/7.4.33/bin/php
OpenSSL version: OpenSSL 1.1.1s  1 Nov 2022
cURL version: 7.86.0 libz 1.2.11 ssl (SecureTransport) OpenSSL/1.1.1s
zip: extension present, unzip present, 7-Zip not available

When I run this command:

composer -vvv req cabag/ext-cabag-import dev-typo3-v11

I get the following output:

composer -vvv req cabag/ext-cabag-import dev-typo3-v11
Running 2.4.4 (2022-10-27 14:39:29) with PHP 7.4.33 on Darwin / 22.1.0
Reading ./composer.json (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/composer.json)
Loading config file /Users/st/.composer/config.json
Loading config file /Users/st/.composer/auth.json
Loading config file ./composer.json (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/composer.json)
Checked CA file /usr/local/etc/ca-certificates/cert.pem: valid
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src): 'git' 'branch' '-a' '--no-color' '--no-abbrev' '-v'
Reading /Users/st/.composer/composer.json
Loading config file /Users/st/.composer/config.json
Loading config file /Users/st/.composer/auth.json
Loading config file /Users/st/.composer/composer.json (/Users/st/.composer/composer.json)
Loading config file /Users/st/.composer/auth.json
Reading /Users/st/.composer/auth.json
Reading /Users/st/scripts/projects/project_ci-relaunch_customer2/src/vendor/composer/installed.json
Reading /Users/st/.composer/vendor/composer/installed.json
Loading plugin TYPO3\ClassAliasLoader\Plugin (from typo3/class-alias-loader)
Loading plugin TYPO3\CMS\Composer\Installer\Plugin (from typo3/cms-composer-installers)
Loading plugin cweagans\Composer\Patches (from cweagans/composer-patches)
Loading plugin Helhum\DotEnvConnector\Plugin (from helhum/dotenv-connector)
Reading ./composer.json (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/composer.json)
Reading /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/packages.json from cache
Using HTTP basic authentication with username "token"
Downloading https://repo.packagist.com/cabag/packages.json
[200] https://repo.packagist.com/cabag/packages.json
Writing /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/packages.json into cache
Reading /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/provider-cabag~ext-cabag-import.json from cache
Downloading https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import.json if modified
Reading /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/provider-cabag~ext-cabag-import~dev.json from cache
Downloading https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import~dev.json if modified
[304] https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import~dev.json
[304] https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import.json
Downloading https://repo.packagist.org/packages.json
[200] https://repo.packagist.org/packages.json
Info from https://repo.packagist.org: #StandWithUkraine
Writing /Users/st/Library/Caches/composer/repo/https---repo.packagist.org/packages.json into cache
Downloading https://repo.packagist.org/p2/cabag/ext-cabag-import.json
Downloading https://repo.packagist.org/p2/cabag/ext-cabag-import~dev.json
[404] https://repo.packagist.org/p2/cabag/ext-cabag-import.json
[404] https://repo.packagist.org/p2/cabag/ext-cabag-import~dev.json
./composer.json has been updated
Unloading plugin Helhum\DotEnvConnector\Plugin
Unloading plugin cweagans\Composer\Patches
Unloading plugin TYPO3\CMS\Composer\Installer\Plugin
Unloading plugin TYPO3\ClassAliasLoader\Plugin
Reading ./composer.json (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/composer.json)
Loading config file /Users/st/.composer/config.json
Loading config file /Users/st/.composer/auth.json
Loading config file ./composer.json (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/composer.json)
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src): 'git' 'branch' '-a' '--no-color' '--no-abbrev' '-v'
Reading /Users/st/.composer/composer.json
Loading config file /Users/st/.composer/config.json
Loading config file /Users/st/.composer/auth.json
Loading config file /Users/st/.composer/composer.json (/Users/st/.composer/composer.json)
Loading config file /Users/st/.composer/auth.json
Reading /Users/st/.composer/auth.json
Reading /Users/st/scripts/projects/project_ci-relaunch_customer2/src/vendor/composer/installed.json
Reading /Users/st/.composer/vendor/composer/installed.json
Loading plugin TYPO3\ClassAliasLoader\Plugin_composer_tmp0 (from typo3/class-alias-loader)
Loading plugin TYPO3\CMS\Composer\Installer\Plugin_composer_tmp1 (from typo3/cms-composer-installers)
Loading plugin cweagans\Composer\Patches_composer_tmp2 (from cweagans/composer-patches)
Loading plugin Helhum\DotEnvConnector\Plugin_composer_tmp3 (from helhum/dotenv-connector)
Running composer update cabag/ext-cabag-import
Reading ./composer.lock (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/composer.lock)
> pre-update-cmd: cweagans\Composer\Patches_composer_tmp2->checkPatches
Loading composer repositories with package information
Reading /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/packages.json from cache
Using HTTP basic authentication with username "token"
Downloading https://repo.packagist.com/cabag/packages.json
[200] https://repo.packagist.com/cabag/packages.json
Writing /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/packages.json into cache
Reading /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/provider-cabag~ext-cabag-import.json from cache
Downloading https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import.json if modified
Reading /Users/st/Library/Caches/composer/repo/https---repo.packagist.com-cabag/provider-cabag~ext-cabag-import~dev.json from cache
Downloading https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import~dev.json if modified
[304] https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import.json
[304] https://repo.packagist.com/cabag/p2/cabag/ext-cabag-import~dev.json
Built pool.
Running pool optimizer.
Updating dependencies
Generating rules
Resolving dependencies through SAT
Looking at all rules.

Dependency resolution completed in 0.001 seconds
Analyzed 214 packages to resolve dependencies
Analyzed 501 rules to resolve dependencies
Generating rules
Resolving dependencies through SAT
Looking at all rules.

Dependency resolution completed in 0.001 seconds
Lock file operations: 1 install, 0 updates, 0 removals
Installs: cabag/ext-cabag-import:dev-typo3-v11 5fe57b5
  - Locking cabag/ext-cabag-import (dev-typo3-v11 5fe57b5)
Writing lock file
Installing dependencies from lock file (including require-dev)
Reading ./composer.lock (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/composer.lock)
Package operations: 2 installs, 0 updates, 0 removals
Installs: cabag/ext-cabag-import:dev-typo3-v11 5fe57b5, cabag/ext-cabag-sla:dev-typo3-v11 ade86a9
Executing command (CWD): git --version
  - Syncing cabag/ext-cabag-import (dev-typo3-v11 5fe57b5) into cache
    Cloning to cache at '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/'
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/): git rev-parse --git-dir
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/): git rev-parse --quiet --verify '5fe57b5bceef2e2548f8af3a6e723e423ff373e1^{commit}'
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/): git branch
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/): git tag
  - Syncing cabag/ext-cabag-sla (dev-typo3-v11 ade86a9) into cache
    Cloning to cache at '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/'
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/): git rev-parse --git-dir
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/): git rev-parse --quiet --verify 'ade86a91fc5dc39e194db5a1919ad2e3916c3a20^{commit}'
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/): git branch
Executing command (/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/): git tag
> pre-package-install: cweagans\Composer\Patches_composer_tmp2->gatherPatches
Patching is disabled. Skipping.
  - Installing cabag/ext-cabag-import (dev-typo3-v11 5fe57b5): Cloning 5fe57b5bceef2e2548f8af3a6e723e423ff373e1 from cache
Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/' '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_import' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/' && cd '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_import' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-cabag_import.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-cabag_import.git'
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_import): git branch -r
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_import): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '5fe57b5bceef2e2548f8af3a6e723e423ff373e1' --
Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '5fe57b5bceef2e2548f8af3a6e723e423ff373e1' --" exceeded the timeout of 300 seconds.
    Install of cabag/ext-cabag-import failed
> pre-package-install: cweagans\Composer\Patches_composer_tmp2->gatherPatches
Patching is disabled. Skipping.
Executing command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla/Configuration'
Executing command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla/Classes'
Executing command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla/Resources'
Executing command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla/.git'
  - Installing cabag/ext-cabag-sla (dev-typo3-v11 ade86a9): Cloning ade86a91fc5dc39e194db5a1919ad2e3916c3a20 from cache
Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/' '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/' && cd '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sla.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sla.git'
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla): git branch -r
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard 'ade86a91fc5dc39e194db5a1919ad2e3916c3a20' --
Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard 'ade86a91fc5dc39e194db5a1919ad2e3916c3a20' --" exceeded the timeout of 300 seconds.
    Install of cabag/ext-cabag-sla failed
The following exception is caused by a process timeout
Check https://getcomposer.org/doc/06-config.md#process-timeout for details

In Process.php line 1204:
                                                                                                                                                                                                             
  [Symfony\Component\Process\Exception\ProcessTimedOutException]                                                                                                                                             
  The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '5fe57b5bceef2e2548f8af3a6e723e423ff373e1' --" exceeded the timeout of 300 seconds.  
                                                                                                                                                                                                             

Exception trace:
  at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/symfony/process/Process.php:1204
 Symfony\Component\Process\Process->checkTimeout() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/symfony/process/Process.php:430
 Symfony\Component\Process\Process->wait() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/symfony/process/Process.php:254
 Symfony\Component\Process\Process->run() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Util/ProcessExecutor.php:134
 Composer\Util\ProcessExecutor->doExecute() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Util/ProcessExecutor.php:76
 Composer\Util\ProcessExecutor->execute() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Downloader/GitDownloader.php:482
 Composer\Downloader\GitDownloader->updateToCommit() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Downloader/GitDownloader.php:143
 Composer\Downloader\GitDownloader->doInstall() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Downloader/VcsDownloader.php:137
 Composer\Downloader\VcsDownloader->install() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Downloader/DownloadManager.php:270
 Composer\Downloader\DownloadManager->install() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer/LibraryInstaller.php:278
 Composer\Installer\LibraryInstaller->installCode() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer/LibraryInstaller.php:152
 Composer\Installer\LibraryInstaller->install() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer/InstallationManager.php:464
 Composer\Installer\InstallationManager->install() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer/InstallationManager.php:392
 Composer\Installer\InstallationManager->Composer\Installer\{closure}() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/react/promise/src/FulfilledPromise.php:28
 React\Promise\FulfilledPromise->then() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer/InstallationManager.php:393
 Composer\Installer\InstallationManager->executeBatch() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer/InstallationManager.php:334
 Composer\Installer\InstallationManager->downloadAndExecuteBatch() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer/InstallationManager.php:242
 Composer\Installer\InstallationManager->execute() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer.php:786
 Composer\Installer->doInstall() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer.php:616
 Composer\Installer->doUpdate() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Installer.php:281
 Composer\Installer->run() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Command/RequireCommand.php:477
 Composer\Command\RequireCommand->doUpdate() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Command/RequireCommand.php:331
 Composer\Command\RequireCommand->execute() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/symfony/console/Command/Command.php:298
 Symfony\Component\Console\Command\Command->run() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/symfony/console/Application.php:1028
 Symfony\Component\Console\Application->doRunCommand() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/symfony/console/Application.php:299
 Symfony\Component\Console\Application->doRun() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Console/Application.php:375
 Composer\Console\Application->doRun() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/vendor/symfony/console/Application.php:171
 Symfony\Component\Console\Application->run() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/src/Composer/Console/Application.php:139
 Composer\Console\Application->run() at phar:///usr/local/Cellar/composer/2.1.12/bin/composer/bin/composer:88
 require() at /usr/local/Cellar/composer/2.1.12/bin/composer:29

require [--dev] [--dry-run] [--prefer-source] [--prefer-dist] [--prefer-install PREFER-INSTALL] [--fixed] [--no-suggest] [--no-progress] [--no-update] [--no-install] [--no-audit] [--audit-format AUDIT-FORMAT] [--update-no-dev] [-w|--update-with-dependencies] [-W|--update-with-all-dependencies] [--with-dependencies] [--with-all-dependencies] [--ignore-platform-req IGNORE-PLATFORM-REQ] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [--sort-packages] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--apcu-autoloader-prefix APCU-AUTOLOADER-PREFIX] [--] [<packages>...]

And I expected this to happen:

Installation of required package.

Important additional information: as discussed with Nils Adermann through the packagist.com Customer chat, composer --no-cache req cabag/ext-cabag-import dev-typo3-v11 worked, opposed to first clearing the cache.

I also assume that this might be a problem with mac OS Ventura or git 2.38.1, but no matter the case, running with --no-cache solved the problem for me.

@Seldaek
Copy link
Member

Seldaek commented Nov 30, 2022

Could you try again with --profile -vvv and share the last 10-15 lines before the exception? I'm curious to see how long it takes for the various steps here:

  - Installing cabag/ext-cabag-sla (dev-typo3-v11 ade86a9): Cloning ade86a91fc5dc39e194db5a1919ad2e3916c3a20 from cache
Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/' '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/' && cd '/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sla.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sla.git'
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla): git branch -r
Executing command (/Users/st/scripts/projects/project_ci-relaunch_customer2/src/web/typo3conf/ext/cabag_sla): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard 'ade86a91fc5dc39e194db5a1919ad2e3916c3a20' --
Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard 'ade86a91fc5dc39e194db5a1919ad2e3916c3a20' --" exceeded the timeout of 300 seconds.
    Install of cabag/ext-cabag-sla failed
The following exception is caused by a process timeout
Check https://getcomposer.org/doc/06-config.md#process-timeout for details

In Process.php line 1204:
                                                                                                                                                                                                             
  [Symfony\Component\Process\Exception\ProcessTimedOutException]                                                                                                                                             
  The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '5fe57b5bceef2e2548f8af3a6e723e423ff373e1' --" exceeded the timeout of 300 seconds.  
                                                                                                                                                                                                             

@CDRO
Copy link
Contributor Author

CDRO commented Dec 1, 2022

I executed the following:

composer req --profile -vvv cabag/ext-cabag-import dev-typo3-v11

and I had another package that was already present in the composer.json that also created a timeout, the error for the second one looks like this:

[21.2MiB/28.64s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-googlesearch.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_googlesearch' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-googlesearch.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_googlesearch' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-cabag_googlesearch.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-cabag_googlesearch.git'
[21.2MiB/28.87s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_googlesearch): git branch -r
[21.2MiB/28.89s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_googlesearch): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '4acb780ceedc3d9cbf064a5e0699d0cf32f28056' --
[21.2MiB/329.07s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '4acb780ceedc3d9cbf064a5e0699d0cf32f28056' --" exceeded the timeout of 300 seconds.
[21.2MiB/329.08s]     Install of cabag/ext-cabag-googlesearch failed
[21.2MiB/329.08s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.2MiB/329.08s] Patching is disabled. Skipping.

The output for the first one (cabag/ext-cabag-import dev-typo3-v11) looks as follows (with several others that also failed):

[21.2MiB/329.08s]   - Installing cabag/ext-cabag-import (dev-typo3-v11 79b44e6): [21.2MiB/329.08s] Cloning 79b44e657c4a11d78e160580141bcbb571dcdb81 from cache
[21.3MiB/329.08s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_import' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-import.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_import' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-cabag_import.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-cabag_import.git'
[21.3MiB/329.25s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_import): git branch -r
[21.3MiB/329.27s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_import): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '79b44e657c4a11d78e160580141bcbb571dcdb81' --
[21.3MiB/629.45s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '79b44e657c4a11d78e160580141bcbb571dcdb81' --" exceeded the timeout of 300 seconds.
[21.3MiB/629.45s]     Install of cabag/ext-cabag-import failed
[21.3MiB/629.45s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.3MiB/629.45s] Patching is disabled. Skipping.
[21.3MiB/629.45s]   - Installing derhansen/sf_banners (6.0.2): Extracting archive
[21.3MiB/629.45s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.3MiB/629.45s] Patching is disabled. Skipping.
[21.3MiB/629.45s]   - Installing cabag/ext-cabag-sfbanners (dev-typo3-v11 437240b): [21.3MiB/629.45s] Cloning 437240b2759463068cf47dd092877944d85a09e2 from cache
[21.3MiB/629.45s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sfbanners.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sfbanners' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sfbanners.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sfbanners' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sfbanners.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sfbanners.git'
[21.3MiB/629.60s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sfbanners): git branch -r
[21.3MiB/629.61s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sfbanners): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '437240b2759463068cf47dd092877944d85a09e2' --
[21.3MiB/929.78s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '437240b2759463068cf47dd092877944d85a09e2' --" exceeded the timeout of 300 seconds.
[21.3MiB/929.78s]     Install of cabag/ext-cabag-sfbanners failed
[21.3MiB/929.78s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.3MiB/929.78s] Patching is disabled. Skipping.
[21.3MiB/929.78s]   - Installing cabag/sla-bundle (1.0.0): [21.3MiB/929.78s] Cloning c6c5a0a95e1e1f64b868c7ffd8331542840b1ca9 from cache
[21.3MiB/929.78s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-sla-bundle.git/' '/Users/st/scripts/projects/project_ci-customer2/src/vendor/cabag/sla-bundle' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-sla-bundle.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/vendor/cabag/sla-bundle' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/sla-bundle.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/sla-bundle.git'
[21.3MiB/929.88s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/vendor/cabag/sla-bundle): git branch -r
[21.3MiB/929.89s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/vendor/cabag/sla-bundle): (git checkout '1.0.0' -- || git checkout -B '1.0.0' 'composer/1.0.0' --) && git reset --hard 'c6c5a0a95e1e1f64b868c7ffd8331542840b1ca9' --
[21.4MiB/1229.97s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout '1.0.0' -- || git checkout -B '1.0.0' 'composer/1.0.0' --) && git reset --hard 'c6c5a0a95e1e1f64b868c7ffd8331542840b1ca9' --" exceeded the timeout of 300 seconds.
[21.4MiB/1229.97s]     Install of cabag/sla-bundle failed
[21.4MiB/1229.97s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.4MiB/1229.97s] Patching is disabled. Skipping.
[21.4MiB/1229.97s]   - Installing cabag/ext-cabag-sla (6.0.1): [21.4MiB/1229.97s] Cloning 6a95780e2268668c87319c4face51545146bbfd4 from cache
[21.4MiB/1229.97s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sla' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-cabag-sla.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sla' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sla.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-cabag_sla.git'
[21.4MiB/1230.13s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sla): git branch -r
[21.4MiB/1230.14s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_sla): (git checkout '6.0.1' -- || git checkout -B '6.0.1' 'composer/6.0.1' --) && git reset --hard '6a95780e2268668c87319c4face51545146bbfd4' --
[21.4MiB/1530.33s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout '6.0.1' -- || git checkout -B '6.0.1' 'composer/6.0.1' --) && git reset --hard '6a95780e2268668c87319c4face51545146bbfd4' --" exceeded the timeout of 300 seconds.
[21.4MiB/1530.33s]     Install of cabag/ext-cabag-sla failed

At the time of writing, the exception still hasn't occured, I guess --profile undercuts exceptions until it's done?

I'll update this comment with the rest, as soon as the command is done.

EDIT: here's the rest

[21.4MiB/1530.33s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.4MiB/1530.33s] Patching is disabled. Skipping.
[21.4MiB/1530.33s]   - Installing typo3/cms-rte-ckeditor (v11.5.19): Extracting archive
[21.4MiB/1530.34s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.4MiB/1530.34s] Patching is disabled. Skipping.
[21.4MiB/1530.34s]   - Installing cabag/ext-cabag-template (dev-typo3-v11 874cf99): [21.4MiB/1530.34s] Cloning 874cf9933b3cc5bc97bebe72ae8ea1b7ae3ae4cf from cache
[21.4MiB/1530.34s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-cabag-template.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_template' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-cabag-template.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_template' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/cabag_template.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/cabag_template.git'
[21.4MiB/1530.47s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_template): git branch -r
[21.4MiB/1530.49s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/cabag_template): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '874cf9933b3cc5bc97bebe72ae8ea1b7ae3ae4cf' --
[21.5MiB/1830.68s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '874cf9933b3cc5bc97bebe72ae8ea1b7ae3ae4cf' --" exceeded the timeout of 300 seconds.
[21.5MiB/1830.68s]     Install of cabag/ext-cabag-template failed
[21.5MiB/1830.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.5MiB/1830.68s] Patching is disabled. Skipping.
[21.5MiB/1830.68s]   - Installing cabag/ext-emboss-maps (dev-typo3-v11 9e8e27c): [21.5MiB/1830.68s] Cloning 9e8e27c1226dbc82352554ca84991d18534b763d from cache
[21.5MiB/1830.68s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-emboss-maps.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/emboss_maps' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-emboss-maps.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/emboss_maps' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-emboss_maps.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-emboss_maps.git'
[21.5MiB/1830.85s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/emboss_maps): git branch -r
[21.5MiB/1830.87s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/emboss_maps): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '9e8e27c1226dbc82352554ca84991d18534b763d' --
[21.5MiB/2130.95s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '9e8e27c1226dbc82352554ca84991d18534b763d' --" exceeded the timeout of 300 seconds.
[21.5MiB/2130.95s]     Install of cabag/ext-emboss-maps failed
[21.5MiB/2130.95s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.5MiB/2130.95s] Patching is disabled. Skipping.
[21.5MiB/2130.95s]   - Installing cabag/ext-swissmem (dev-master f1bc338): [21.5MiB/2130.96s] Cloning f1bc3383cd2964f1e58bbe016547a5d1eb49b7ad from cache
[21.5MiB/2130.96s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem.git'
[21.5MiB/2131.22s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem): git branch -r
[21.5MiB/2131.24s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem): (git checkout 'master' -- || git checkout -B 'master' 'composer/master' --) && git reset --hard 'f1bc3383cd2964f1e58bbe016547a5d1eb49b7ad' --
[21.5MiB/2431.42s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'master' -- || git checkout -B 'master' 'composer/master' --) && git reset --hard 'f1bc3383cd2964f1e58bbe016547a5d1eb49b7ad' --" exceeded the timeout of 300 seconds.
[21.5MiB/2431.42s]     Install of cabag/ext-swissmem failed
[21.5MiB/2431.42s]   - Marking cabag/ext-swissmem (9999999-dev f1bc338) as installed, alias of cabag/ext-swissmem (dev-master f1bc338)
[21.5MiB/2431.42s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.5MiB/2431.42s] Patching is disabled. Skipping.
[21.5MiB/2431.42s]   - Installing friendsoftypo3/tt-address (6.1.0): Extracting archive
[21.5MiB/2431.42s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.5MiB/2431.42s] Patching is disabled. Skipping.
[21.5MiB/2431.42s]   - Installing cabag/ext-swissmem-base (6.3.2): [21.6MiB/2431.43s] Cloning e04d7d8d17f1cafaf4a5c556cdb41ee622064063 from cache
[21.6MiB/2431.43s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-base.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_base' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-base.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_base' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_base.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_base.git'
[21.6MiB/2431.55s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_base): git branch -r
[21.6MiB/2431.56s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_base): (git checkout '6.3.2' -- || git checkout -B '6.3.2' 'composer/6.3.2' --) && git reset --hard 'e04d7d8d17f1cafaf4a5c556cdb41ee622064063' --
[21.6MiB/2731.68s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout '6.3.2' -- || git checkout -B '6.3.2' 'composer/6.3.2' --) && git reset --hard 'e04d7d8d17f1cafaf4a5c556cdb41ee622064063' --" exceeded the timeout of 300 seconds.
[21.6MiB/2731.68s]     Install of cabag/ext-swissmem-base failed
[21.6MiB/2731.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.6MiB/2731.68s] Patching is disabled. Skipping.
[21.6MiB/2731.68s]   - Installing cabag/ext-swissmem-lms (dev-typo3-v11 6b3df7b): [21.6MiB/2731.68s] Cloning 6b3df7bc8f6c45e6a9a007ab42631b8119029443 from cache
[21.6MiB/2731.68s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-lms.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_lms' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-lms.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_lms' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_lms.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_lms.git'
[21.6MiB/2731.94s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_lms): git branch -r
[21.6MiB/2731.96s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_lms): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '6b3df7bc8f6c45e6a9a007ab42631b8119029443' --
[21.6MiB/3031.98s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '6b3df7bc8f6c45e6a9a007ab42631b8119029443' --" exceeded the timeout of 300 seconds.
[21.6MiB/3031.98s]     Install of cabag/ext-swissmem-lms failed
[21.6MiB/3031.98s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.6MiB/3031.98s] Patching is disabled. Skipping.
[21.6MiB/3031.98s]   - Installing cabag/ext-swissmem-cluster (dev-typo3-v11 89ce752): [21.6MiB/3031.98s] Cloning 89ce7526fd4cf2cbbb76ebd6b1abca3b7d8b7769 from cache
[21.6MiB/3031.98s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-cluster.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cluster' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-cluster.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cluster' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_cluster.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_cluster.git'
[21.6MiB/3032.36s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cluster): git branch -r
[21.6MiB/3032.37s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cluster): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '89ce7526fd4cf2cbbb76ebd6b1abca3b7d8b7769' --
[21.6MiB/3332.42s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '89ce7526fd4cf2cbbb76ebd6b1abca3b7d8b7769' --" exceeded the timeout of 300 seconds.
[21.6MiB/3332.42s]     Install of cabag/ext-swissmem-cluster failed
[21.6MiB/3332.42s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.6MiB/3332.42s] Patching is disabled. Skipping.
[21.6MiB/3332.42s]   - Installing cabag/ext-swissmem-charts (dev-typo3-v11 89bb7fe): [21.6MiB/3332.42s] Cloning 89bb7fe4739179b73c7bd4b19d9493e3405d852a from cache
[21.6MiB/3332.42s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-charts.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_charts' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-charts.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_charts' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_charts.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_charts.git'
[21.6MiB/3332.56s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_charts): git branch -r
[21.6MiB/3332.57s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_charts): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '89bb7fe4739179b73c7bd4b19d9493e3405d852a' --
[21.7MiB/3632.59s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '89bb7fe4739179b73c7bd4b19d9493e3405d852a' --" exceeded the timeout of 300 seconds.
[21.7MiB/3632.59s]     Install of cabag/ext-swissmem-charts failed
[21.7MiB/3632.59s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.7MiB/3632.59s] Patching is disabled. Skipping.
[21.7MiB/3632.60s]   - Installing cabag/ext-swissmem-template (3.0.0): [21.7MiB/3632.60s] Cloning d09df6dbb4fee03e6a153e628afbab7dd2b87dc8 from cache
[21.7MiB/3632.60s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-template.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_template' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-template.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_template' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_template.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_template.git'
[21.7MiB/3632.72s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_template): git branch -r
[21.7MiB/3632.73s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_template): (git checkout '3.0.0' -- || git checkout -B '3.0.0' 'composer/3.0.0' --) && git reset --hard 'd09df6dbb4fee03e6a153e628afbab7dd2b87dc8' --
[21.7MiB/3932.80s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout '3.0.0' -- || git checkout -B '3.0.0' 'composer/3.0.0' --) && git reset --hard 'd09df6dbb4fee03e6a153e628afbab7dd2b87dc8' --" exceeded the timeout of 300 seconds.
[21.7MiB/3932.80s]     Install of cabag/ext-swissmem-template failed
[21.7MiB/3932.80s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.7MiB/3932.80s] Patching is disabled. Skipping.
[21.7MiB/3932.80s]   - Installing cabag/ext-swissmem-cards (dev-typo3-v11 a0bad98): [21.7MiB/3932.80s] Cloning a0bad985c48f555061b0c20ae57e510277167299 from cache
[21.7MiB/3932.80s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-cards.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cards' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-cards.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cards' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_cards.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_cards.git'
[21.7MiB/3932.96s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cards): git branch -r
[21.7MiB/3932.97s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_cards): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard 'a0bad985c48f555061b0c20ae57e510277167299' --
[21.7MiB/4233.09s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard 'a0bad985c48f555061b0c20ae57e510277167299' --" exceeded the timeout of 300 seconds.
[21.7MiB/4233.09s]     Install of cabag/ext-swissmem-cards failed
[21.7MiB/4233.09s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.7MiB/4233.09s] Patching is disabled. Skipping.
[21.7MiB/4233.09s]   - Installing cabag/ext-swissmem-ece (dev-typo3-v11 5242bdd): [21.7MiB/4233.09s] Cloning 5242bdd1f9b25f11ad7c421cbc45a2e7893f450e from cache
[21.7MiB/4233.09s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-ece.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_ece' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-ece.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_ece' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_ece.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_ece.git'
[21.7MiB/4233.23s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_ece): git branch -r
[21.7MiB/4233.24s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_ece): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '5242bdd1f9b25f11ad7c421cbc45a2e7893f450e' --
[21.7MiB/4533.30s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '5242bdd1f9b25f11ad7c421cbc45a2e7893f450e' --" exceeded the timeout of 300 seconds.
[21.7MiB/4533.30s]     Install of cabag/ext-swissmem-ece failed
[21.7MiB/4533.31s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.7MiB/4533.31s] Patching is disabled. Skipping.
[21.7MiB/4533.31s]   - Installing typo3/cms-fluid (v11.5.19): Extracting archive
[21.8MiB/4533.31s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.8MiB/4533.31s] Patching is disabled. Skipping.
[21.8MiB/4533.31s]   - Installing cabag/ext-swissmem-members (dev-typo3-v11 0352228): [21.8MiB/4533.31s] Cloning 03522289d7d7daa9dc47a9401c0f7e150684b4b2 from cache
[21.8MiB/4533.31s] Executing command (CWD): git clone --no-checkout '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-members.git/' '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_members' --dissociate --reference '/Users/st/Library/Caches/composer/vcs/git-gitlab.cabag.ch-cabag-ext-swissmem-members.git/' && cd '/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_members' && git remote set-url origin -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_members.git' && git remote add composer -- 'git@gitlab.cabag.ch:cabag/ext-swissmem_members.git'
[21.8MiB/4533.47s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_members): git branch -r
[21.8MiB/4533.48s] Executing command (/Users/st/scripts/projects/project_ci-customer2/src/web/typo3conf/ext/swissmem_members): (git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '03522289d7d7daa9dc47a9401c0f7e150684b4b2' --
[21.8MiB/4833.66s] Failed: [Symfony\Component\Process\Exception\ProcessTimedOutException] The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --hard '03522289d7d7daa9dc47a9401c0f7e150684b4b2' --" exceeded the timeout of 300 seconds.
[21.8MiB/4833.66s]     Install of cabag/ext-swissmem-members failed
[21.8MiB/4833.66s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.8MiB/4833.66s] Patching is disabled. Skipping.
[21.8MiB/4833.66s]   - Installing evoweb/recaptcha (11.0.2): Extracting archive
[21.8MiB/4833.67s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.8MiB/4833.67s] Patching is disabled. Skipping.
[21.8MiB/4833.67s]   - Installing typo3/cms-install (v11.5.19): Extracting archive
[21.9MiB/4833.67s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.9MiB/4833.67s] Patching is disabled. Skipping.
[21.9MiB/4833.67s]   - Installing typo3/cms-extensionmanager (v11.5.19): Extracting archive
[21.9MiB/4833.67s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.9MiB/4833.67s] Patching is disabled. Skipping.
[21.9MiB/4833.67s]   - Installing typo3/cms-recordlist (v11.5.19): Extracting archive
[21.9MiB/4833.67s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[21.9MiB/4833.67s] Patching is disabled. Skipping.
[21.9MiB/4833.67s]   - Installing typo3/cms-backend (v11.5.19): Extracting archive
[22.0MiB/4833.67s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.0MiB/4833.67s] Patching is disabled. Skipping.
[22.0MiB/4833.67s]   - Installing symfony/process (v5.4.11): Extracting archive
[22.0MiB/4833.67s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.0MiB/4833.67s] Patching is disabled. Skipping.
[22.0MiB/4833.67s]   - Installing helhum/config-loader (v0.12.5): Extracting archive
[22.1MiB/4833.67s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.1MiB/4833.67s] Patching is disabled. Skipping.
[22.1MiB/4833.67s]   - Installing helhum/typo3-console (v7.1.2): Extracting archive
[22.1MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.1MiB/4833.68s] Patching is disabled. Skipping.
[22.1MiB/4833.68s]   - Installing lochmueller/staticfilecache (12.5.0): Extracting archive
[22.1MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.1MiB/4833.68s] Patching is disabled. Skipping.
[22.1MiB/4833.68s]   - Installing michielroos/typo3scan (1.7.3): Extracting archive
[22.2MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.2MiB/4833.68s] Patching is disabled. Skipping.
[22.2MiB/4833.68s]   - Installing sjbr/static-info-tables (v11.5.3): Extracting archive
[22.2MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.2MiB/4833.68s] Patching is disabled. Skipping.
[22.2MiB/4833.68s]   - Installing typo3/cms-felogin (v11.5.19): Extracting archive
[22.2MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.2MiB/4833.68s] Patching is disabled. Skipping.
[22.2MiB/4833.68s]   - Installing sjbr/sr-feuser-register (v11.5.4): Extracting archive
[22.3MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.3MiB/4833.68s] Patching is disabled. Skipping.
[22.3MiB/4833.68s]   - Installing sjbr/sr-email-subscribe (v11.5.0): Extracting archive
[22.3MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.3MiB/4833.68s] Patching is disabled. Skipping.
[22.3MiB/4833.68s]   - Installing squizlabs/php_codesniffer (3.7.1): Extracting archive
[22.4MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.4MiB/4833.68s] Patching is disabled. Skipping.
[22.4MiB/4833.68s]   - Installing nette/utils (v3.2.8): Extracting archive
[22.4MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.4MiB/4833.68s] Patching is disabled. Skipping.
[22.4MiB/4833.68s]   - Installing symplify/smart-file-system (10.1.2): Extracting archive
[22.4MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.4MiB/4833.68s] Patching is disabled. Skipping.
[22.4MiB/4833.68s]   - Installing phpstan/phpstan (1.9.2): Extracting archive
[22.5MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.5MiB/4833.68s] Patching is disabled. Skipping.
[22.5MiB/4833.68s]   - Installing rector/rector (0.14.8): Extracting archive
[22.5MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.5MiB/4833.68s] Patching is disabled. Skipping.
[22.5MiB/4833.68s]   - Installing helmich/typo3-typoscript-parser (v2.4.1): Extracting archive
[22.5MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.5MiB/4833.68s] Patching is disabled. Skipping.
[22.5MiB/4833.68s]   - Installing ssch/typo3-rector (v1.0.5): Extracting archive
[22.6MiB/4833.68s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.6MiB/4833.68s] Patching is disabled. Skipping.
[22.6MiB/4833.68s]   - Installing typo3/cms-reports (v11.5.19): Extracting archive
[22.6MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.6MiB/4833.69s] Patching is disabled. Skipping.
[22.6MiB/4833.69s]   - Installing t3monitor/t3monitoring_client (9.2.2): Extracting archive
[22.6MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.6MiB/4833.69s] Patching is disabled. Skipping.
[22.6MiB/4833.69s]   - Installing symfony/var-dumper (v5.4.14): Extracting archive
[22.7MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.7MiB/4833.69s] Patching is disabled. Skipping.
[22.7MiB/4833.69s]   - Installing typo3/cms-adminpanel (v11.5.19): Extracting archive
[22.7MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.7MiB/4833.69s] Patching is disabled. Skipping.
[22.7MiB/4833.69s]   - Installing typo3/cms-belog (v11.5.19): Extracting archive
[22.8MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.8MiB/4833.69s] Patching is disabled. Skipping.
[22.8MiB/4833.69s]   - Installing typo3/cms-beuser (v11.5.19): Extracting archive
[22.8MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.8MiB/4833.69s] Patching is disabled. Skipping.
[22.8MiB/4833.69s]   - Installing typo3/cms-filemetadata (v11.5.19): Extracting archive
[22.8MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.8MiB/4833.69s] Patching is disabled. Skipping.
[22.8MiB/4833.69s]   - Installing typo3/cms-form (v11.5.19): Extracting archive
[22.9MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.9MiB/4833.69s] Patching is disabled. Skipping.
[22.9MiB/4833.69s]   - Installing typo3/cms-info (v11.5.19): Extracting archive
[22.9MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.9MiB/4833.69s] Patching is disabled. Skipping.
[22.9MiB/4833.69s]   - Installing typo3/cms-lowlevel (v11.5.19): Extracting archive
[22.9MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[22.9MiB/4833.69s] Patching is disabled. Skipping.
[22.9MiB/4833.69s]   - Installing typo3/cms-opendocs (v11.5.19): Extracting archive
[23.0MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.0MiB/4833.69s] Patching is disabled. Skipping.
[23.0MiB/4833.69s]   - Installing typo3/cms-recycler (v11.5.19): Extracting archive
[23.0MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.0MiB/4833.69s] Patching is disabled. Skipping.
[23.0MiB/4833.69s]   - Installing typo3/cms-redirects (v11.5.19): Extracting archive
[23.1MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.1MiB/4833.69s] Patching is disabled. Skipping.
[23.1MiB/4833.69s]   - Installing typo3/cms-scheduler (v11.5.19): Extracting archive
[23.1MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.1MiB/4833.69s] Patching is disabled. Skipping.
[23.1MiB/4833.69s]   - Installing typo3/cms-seo (v11.5.19): Extracting archive
[23.1MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.1MiB/4833.69s] Patching is disabled. Skipping.
[23.1MiB/4833.69s]   - Installing typo3/cms-setup (v11.5.19): Extracting archive
[23.2MiB/4833.69s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.2MiB/4833.69s] Patching is disabled. Skipping.
[23.2MiB/4833.70s]   - Installing typo3/cms-tstemplate (v11.5.19): Extracting archive
[23.2MiB/4833.70s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.2MiB/4833.70s] Patching is disabled. Skipping.
[23.2MiB/4833.70s]   - Installing typo3/cms-viewpage (v11.5.19): Extracting archive
[23.2MiB/4833.70s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.2MiB/4833.70s] Patching is disabled. Skipping.
[23.2MiB/4833.70s]   - Installing typo3/cms-filelist (v11.5.19): Extracting archive
[23.3MiB/4833.70s] > pre-package-install: cweagans\Composer\Patches->gatherPatches
[23.3MiB/4833.70s] Patching is disabled. Skipping.
[23.3MiB/4833.70s]   - Installing typo3/minimal (v11.5.0)
[24.1MiB/4833.72s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a896d0e4'
[24.1MiB/4833.73s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b3371571'
[24.1MiB/4833.73s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/9b4d5d35'
[24.1MiB/4833.73s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b61f9e18'
[24.1MiB/4833.74s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d7b97c74'
[24.2MiB/4833.74s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/c6d9e66e'
[24.2MiB/4833.74s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f445b180'
[24.2MiB/4833.75s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/50f3ca51'
[24.2MiB/4833.75s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0102c422'
[24.2MiB/4833.76s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a69b1584'
[23.7MiB/4833.84s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-6a64df8d1ee630aa304c4f825158193b' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/42bf6f3d'
[23.7MiB/4833.84s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-4801b3c5498ef764628e3341ef8a7aa2' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/cefbc4ee'
[23.7MiB/4833.84s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-d04ff8440a3118d0d3404e13923b74cd' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/35c89c49'
[23.7MiB/4833.84s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-c9bba100ed63e63af95e481417dfd067' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ad423001'
[23.7MiB/4833.85s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-d507e6d3296108e36f7797038ae17c5c' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a7e84fbd'
[23.7MiB/4833.85s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-39854e0ed65ef28ed408beac54225c4c' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/af23da6b'
[23.7MiB/4833.85s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-7f3eb8e25f59e81fcfb61fa728005aa8' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f2d594b7'
[23.7MiB/4833.85s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-69744542a06dad3569be2186c2a63896' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/c02c0dca'
[23.7MiB/4833.86s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-f09e01d6101c44211330a66f766a6ff7' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/345cd868'
[23.7MiB/4833.87s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-66061210e82dc76cdd7e4638f719f4ab' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7046b31a'
[23.7MiB/4833.88s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/42bf6f3d'
[23.7MiB/4833.89s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/cefbc4ee'
[23.7MiB/4833.90s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ad423001'
[23.7MiB/4833.91s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a7e84fbd'
[23.8MiB/4833.91s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/af23da6b'
[23.8MiB/4833.92s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f2d594b7'
[23.8MiB/4833.92s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/c02c0dca'
[23.8MiB/4833.93s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/345cd868'
[23.8MiB/4833.94s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7046b31a'
[23.8MiB/4833.94s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/35c89c49'
[23.3MiB/4834.06s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-0f549078bf1d65e985f02056d8240241' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/e3d251a2'
[23.3MiB/4834.06s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-c982e72cfeeb611f1667b7cf087cec27' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/95ea08dc'
[23.3MiB/4834.06s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-0cf3fda79cff43933c4ef8dd3a9ec6f0' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/306bf78e'
[23.3MiB/4834.07s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2e05c493e7ea9e4027c432a4428060b3' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/556a5c07'
[23.3MiB/4834.07s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-79f5767ca839375c2685f7362f9724a2' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/dfb96ea4'
[23.3MiB/4834.07s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-68ec1df697aec13368390c7ae2711115' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0743a1dc'
[23.3MiB/4834.08s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-8c30c0429d139ac2570ebe98f6649f14' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/922f47bd'
[23.4MiB/4834.08s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2bb9e6000715e85db404a4e1f7154577' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/30280985'
[23.4MiB/4834.08s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-65e3ec4def1846a3133457b5dc061d9d' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/1c3672da'
[23.3MiB/4834.10s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/e3d251a2'
[23.3MiB/4834.11s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/95ea08dc'
[23.3MiB/4834.12s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/306bf78e'
[23.3MiB/4834.12s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/dfb96ea4'
[23.4MiB/4834.13s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0743a1dc'
[23.4MiB/4834.13s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/922f47bd'
[23.4MiB/4834.14s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/30280985'
[23.4MiB/4834.14s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2c7146f3b38918823531a3579349f4df' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2417db6b'
[23.4MiB/4834.15s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/556a5c07'
[23.4MiB/4834.15s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/1c3672da'
[23.0MiB/4834.22s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2417db6b'
[23.0MiB/4834.22s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-28636e53647b5682e51cb758bbf3f6c5' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/8934a2ee'
[23.0MiB/4834.23s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-514c7c5ae18e19df61ff0abd3b40f342' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/e69dd7fb'
[23.0MiB/4834.23s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-a524b221128c69feb3e58e70633be7ed' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/e0d3a08b'
[23.0MiB/4834.23s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-04725fdcdfa0ea28016b475955a017d2' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/318fe0d4'
[23.0MiB/4834.23s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-41dfac8c7f196630986c06175ca3798b' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ced11ee1'
[23.1MiB/4834.23s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-fc75dfd9a0d8f04649d3569f119076c0' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4924088a'
[23.1MiB/4834.23s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-ad69c528391e9fdfa84f39c4b374a331' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/84e57ab8'
[23.0MiB/4834.27s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/e69dd7fb'
[23.0MiB/4834.28s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/e0d3a08b'
[23.0MiB/4834.28s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/318fe0d4'
[23.0MiB/4834.29s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ced11ee1'
[23.0MiB/4834.29s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4924088a'
[23.0MiB/4834.29s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/84e57ab8'
[23.0MiB/4834.30s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-668242407d98f584e3f6ba8c4418ca63' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b2d8614b'
[23.0MiB/4834.30s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-9ef79ed27db7c29c09e021c2f57f60c2' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/61618e75'
[23.0MiB/4834.32s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/8934a2ee'
[23.0MiB/4834.32s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-0545928c2e0e8c24e0b496e6d61bee5c' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d785bb07'
[22.7MiB/4834.39s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b2d8614b'
[22.7MiB/4834.39s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/61618e75'
[22.7MiB/4834.40s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d785bb07'
[22.7MiB/4834.40s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-a1cadd53a3b9dbe1ac4e700ae18b6e58' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/27251010'
[22.7MiB/4834.40s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-0fc7b1b51f8a97803513f559a1eef47a' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/401966da'
[22.7MiB/4834.40s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-f6fdbebb2fb93d5a2e9eb4670b1e714d' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/63ec7a08'
[22.7MiB/4834.41s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-c08869700d43f51c63c5c681f3515e8b' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/10b771f7'
[22.7MiB/4834.41s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-f3918a323c756075aa1f722869a40d32' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d012478a'
[22.7MiB/4834.42s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-5f50c92c36e28427f9318c052e976fb3' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/8b0d1827'
[22.7MiB/4834.45s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/27251010'
[22.7MiB/4834.45s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/10b771f7'
[22.7MiB/4834.46s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d012478a'
[22.7MiB/4834.47s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/8b0d1827'
[22.7MiB/4834.47s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-21066a2e10d27689f25017d91900e93a' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/9e0ff659'
[22.5MiB/4834.51s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/401966da'
[22.6MiB/4834.51s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/63ec7a08'
[22.6MiB/4834.52s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/9e0ff659'
[22.6MiB/4834.52s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-b8a69e74ce5e281e454aefa42c93e69e' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/9cc53831'
[22.6MiB/4834.52s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-3e652a5f416efefe73c268a7d8c2e3cc' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ade8f96c'
[22.6MiB/4834.53s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-944ef1783d125cedf6607e48ebfb377f' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/02e74688'
[22.4MiB/4834.59s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/9cc53831'
[22.4MiB/4834.59s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/02e74688'
[22.4MiB/4834.59s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-f2bf82b3b3d8b2422b4573ca2c43ff18' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2af1e8d0'
[22.4MiB/4834.60s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-a1746074edef8a168524d78dc3598caa' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ff608fc3'
[22.4MiB/4834.60s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-fd6f2954d5e0ed7f710c2f5412c4c165' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a477ced0'
[22.4MiB/4834.60s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-ba575ecc4a1bc808d28fdbae41f13f63' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/13a70f13'
[22.3MiB/4834.65s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ade8f96c'
[22.3MiB/4834.66s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2af1e8d0'
[22.3MiB/4834.66s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ff608fc3'
[22.3MiB/4834.67s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a477ced0'
[22.3MiB/4834.67s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/13a70f13'
[22.3MiB/4834.67s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-e391bdb2cc6ad32bf288e81d9f95665e' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7ebb1121'
[22.3MiB/4834.67s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-a97fd3cff99f7c18300a2065b342e0a9' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/48759368'
[22.3MiB/4834.68s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-b6aa0a0d6c08861167686ce70e868aea' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/395b4ae6'
[22.2MiB/4834.70s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7ebb1121'
[22.2MiB/4834.71s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/48759368'
[22.2MiB/4834.71s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/395b4ae6'
[22.2MiB/4834.72s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-fc9c68ea2b632d87d9518b0fff27429f' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b1f2df92'
[22.2MiB/4834.72s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-076d8468179734d1c59618734ae70301' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b4fc34e7'
[22.0MiB/4834.77s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b1f2df92'
[22.0MiB/4834.77s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b4fc34e7'
[22.0MiB/4834.78s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-7cc1ca971d67fd895b85c884c35a2b4b' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ed6053d9'
[22.0MiB/4834.78s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-ae0c5a631665cea70fa455511fcac5f7' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ce047079'
[22.0MiB/4834.78s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-a9cebfe9ab18648da4410644b523dba2' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/faa09c11'
[22.0MiB/4834.78s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-a12c0dfe174b2053f106cd7ef2239ded' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7e91a43e'
[22.0MiB/4834.78s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-f0182c6d30ee16558bac097c71657dc4' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/12f87f34'
[21.9MiB/4834.84s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ce047079'
[21.9MiB/4834.85s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/faa09c11'
[21.9MiB/4834.86s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7e91a43e'
[21.9MiB/4834.86s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/12f87f34'
[21.9MiB/4834.87s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-8fa7551d6e27e9f75fdfd2d257d323db' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/eea9476b'
[21.9MiB/4834.87s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-8c8a642e1c83b4707f73d86976b34210' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/93acb482'
[21.9MiB/4834.87s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-07fd8321fd8364cc8120f1ae5ec58853' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b4858b5f'
[21.8MiB/4834.93s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/93acb482'
[21.8MiB/4834.93s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-96a092335c3984ce04e749a18684fa0f' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f2c53b25'
[21.8MiB/4834.93s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-d09df77cdcbb3443b9f04221c7fbc86d' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/31809f91'
[21.6MiB/4835.00s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ed6053d9'
[21.6MiB/4835.00s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f2c53b25'
[21.7MiB/4835.01s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/31809f91'
[21.7MiB/4835.01s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-eb5b565ebebd43b55ec4f1e16300c46f' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/78d0d9f2'
[21.7MiB/4835.01s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-8689d4c647fc811eb973538f1d33d405' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/58af2448'
[21.7MiB/4835.01s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-125c46a14a16defbfa575aeda571f972' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/70a8243d'
[21.7MiB/4835.02s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-f3d2298b54f1fe400535904fdb3af76f' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4239f82a'
[21.6MiB/4835.04s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b4858b5f'
[21.6MiB/4835.05s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/78d0d9f2'
[21.6MiB/4835.05s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/70a8243d'
[21.6MiB/4835.05s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-40918f4ced37480e8ba6890f8eb5e861' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/91f472e4'
[21.5MiB/4835.10s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/58af2448'
[21.5MiB/4835.10s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4239f82a'
[21.5MiB/4835.11s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-50c5cba1fa17eefd63d2ebb786db2b4e' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d924ac3f'
[21.5MiB/4835.11s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-1fe9a296066a2b2fb1543dc8ed5a67d0' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a15c8e1f'
[21.5MiB/4835.11s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-48593df434e282dda9cde47c0aae420a' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/45511067'
[21.4MiB/4835.17s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d924ac3f'
[21.4MiB/4835.17s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a15c8e1f'
[21.4MiB/4835.18s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-1d16f1d5d66a92d2735998f4ad7c4566' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f0924418'
[21.4MiB/4835.18s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-63eb8a1a09e37bf4cee8095a21390a7d' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4b6b6433'
[21.4MiB/4835.18s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2af11692219423f565b718f6ae2db196' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/9603e568'
[21.3MiB/4835.27s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/91f472e4'
[21.3MiB/4835.28s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f0924418'
[21.3MiB/4835.29s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4b6b6433'
[21.3MiB/4835.29s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2fe94d411d895786066846981ab95c56' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5eeda82e'
[21.3MiB/4835.30s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-96dfe0d186875cc6f5e1407c163fa47e' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ba67b62a'
[21.2MiB/4835.34s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ba67b62a'
[21.2MiB/4835.34s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-6b160729c24e036c598add57e9b1da45' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4ef9bb80'
[21.2MiB/4835.35s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-96195205abdcc2bb5acd02cf726769d9' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/edec393c'
[21.1MiB/4835.40s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5eeda82e'
[21.1MiB/4835.41s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2ce5c94f573c55c0b45df7d9fa7ee509' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2a3a5be9'
[21.1MiB/4835.41s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-06ee16193cab12f3788c1582d602e65b' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0292eadb'
[21.1MiB/4835.42s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-7e49a0229b5ca43036a471663622a5a3' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/02db79c1'
[21.1MiB/4835.47s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/9603e568'
[21.1MiB/4835.49s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4ef9bb80'
[21.1MiB/4835.50s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0292eadb'
[21.1MiB/4835.51s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/02db79c1'
[21.1MiB/4835.52s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-08fbdc523074e5746421dd0312b82f51' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ccf7d813'
[21.0MiB/4835.57s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2a3a5be9'
[21.0MiB/4835.57s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-344d19ec9a1a1c708f690f9880c082c7' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5a2d7141'
[20.8MiB/4835.66s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-4c651626bf940343dc39a2cfe1caa224' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/c094cb03'
[20.8MiB/4835.66s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-fdb81f05726ba75f9c332397e297ade5' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/52d05571'
[20.9MiB/4835.66s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-3c22e09af7a0ca2bc9f64e8b1e807d3d' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5c5b3fea'
[20.9MiB/4835.67s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-e66a36ad2d6dbb2988726d30eeb90599' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/70d0e9f2'
[20.8MiB/4835.76s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5a2d7141'
[20.8MiB/4835.78s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/c094cb03'
[20.8MiB/4835.81s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5c5b3fea'
[20.8MiB/4835.82s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/70d0e9f2'
[20.9MiB/4835.83s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-92ca30f13c47acc1eaf5a6cd8cfba7e8' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0a15ff63'
[20.6MiB/4835.95s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-194be5a2679a0082afb76a2d54ee8755' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/32cf794e'
[20.6MiB/4835.95s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-60f9ab72ae71c3db878bcbea3fdd9921' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/c74cd7b2'
[20.7MiB/4835.95s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-55093f416ba00310db2b7e55c7d63fee.zip' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/6fe2198a'
[20.7MiB/4835.96s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-e3961a24d393407f2348c817c7ebbcfd' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4952062e'
[20.7MiB/4835.97s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ccf7d813'
[20.6MiB/4836.03s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0a15ff63'
[20.6MiB/4836.03s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-dd3b159dfb1d4ce8b4bdfb5aa88f70d0.zip' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/95db8ef0'
[20.6MiB/4836.08s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4952062e'
[20.6MiB/4836.13s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-21a4bd1a4785baba06572f844ddcedd1.zip' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f6a8b118'
[20.6MiB/4836.13s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-ee6d1ed76a2cc9473cf132bffaa6ec1c' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/545b8bd0'
[20.5MiB/4836.19s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/32cf794e'
[20.5MiB/4836.20s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/c74cd7b2'
[20.5MiB/4836.23s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-9ddf3a8b23e5f230cc8dd1f3928b11a0' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d7be9e26'
[20.5MiB/4836.24s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-ffe1e5237a49adcc1e4ffd363e450848' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a351313a'
[20.4MiB/4836.28s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/d7be9e26'
[20.4MiB/4836.28s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a351313a'
[20.5MiB/4836.29s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-a6a144a10d0e474acc591c050070bc58' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/acf6b3c9'
[20.3MiB/4836.38s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-8779ff695fc624384ca42aee2aa8bbf2' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/004036c0'
[20.4MiB/4836.39s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-618a4413fdb13f64edab7e6e8cbee552' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ff6cde00'
[20.3MiB/4836.48s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/acf6b3c9'
[20.3MiB/4836.49s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ff6cde00'
[20.3MiB/4836.50s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-d9a1bbea3392e6dbb458222b4912f290' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/de25f5ef'
[20.3MiB/4836.50s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-cabc24b8cd19122af36f521aa43d2b7b' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4a6d186a'
[20.2MiB/4836.69s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/52d05571'
[20.2MiB/4836.69s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/4a6d186a'
[20.2MiB/4836.69s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-7044da0ba172468f3fbe516d2c951a03' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0811855a'
[20.2MiB/4836.70s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2f675a3f52186106bdd5207d1142b751' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b6abdcee'
[20.1MiB/4836.74s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0811855a'
[20.1MiB/4836.75s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-d5ea6696dbab18cb8d7f0c130af4207b' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0ac28362'
[20.1MiB/4836.75s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-e1a464723df8d1ca2da69cd41fc6b711' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a896713b'
[20.1MiB/4836.76s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b6abdcee'
[20.1MiB/4836.82s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/a896713b'
[20.1MiB/4836.83s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-ac82cde1ce72a1bea9ed5d08b3b66fe0' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/42ec1ab5'
[20.0MiB/4836.86s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-c54c812182380f9f3ab29e721e596eb6' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/707fc3f7'
[20.0MiB/4836.89s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-d80b13b48f7b2bb12c0bb77e52486e4a' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ecb67570'
[20.0MiB/4836.90s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/0ac28362'
[20.0MiB/4836.91s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/707fc3f7'
[19.9MiB/4837.09s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/de25f5ef'
[19.9MiB/4837.10s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/42ec1ab5'
[19.9MiB/4837.10s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-0e2c0dd815ea35264492d3263157168a' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7aca4e51'
[19.9MiB/4837.10s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-d30ffc26e45cf969dce907bd29fdb518' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/135c63cd'
[19.8MiB/4837.15s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/7aca4e51'
[19.8MiB/4837.15s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-76a2431ffe2f5991838921f52076bc6d' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/6f4baa6f'
[19.9MiB/4837.15s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-1ce88064ba0d776518ea7c07e4877e50' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/04cb1129'
[19.9MiB/4837.16s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/135c63cd'
[19.8MiB/4837.23s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/6f4baa6f'
[19.8MiB/4837.24s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/04cb1129'
[19.8MiB/4837.25s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-9dcd614be8f431a90ab43dab880551a5' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/bfeaae18'
[19.8MiB/4837.30s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-2bce56e356cab7db9552fa3a181404b8' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b5453e8c'
[19.7MiB/4837.42s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/bfeaae18'
[19.7MiB/4837.42s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/b5453e8c'
[19.7MiB/4837.43s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-0b1fed7b6082de24bbb2f0dee70c1bf7' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5fd14900'
[19.7MiB/4837.43s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-3ed078a01fb56f605a4a16a26da3d883' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/61e78cbc'
[19.6MiB/4837.52s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/5fd14900'
[19.6MiB/4837.54s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/61e78cbc'
[19.6MiB/4837.55s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-71b7d4387596a227914daee52a59a098' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f1929f20'
[19.6MiB/4837.56s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-3d622abf4285a7a2b05d7f1b409149a4' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/581ead22'
[19.5MiB/4837.62s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/f1929f20'
[19.5MiB/4837.63s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/581ead22'
[19.5MiB/4837.63s] Executing async command (CWD): '/usr/bin/unzip' -qq '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/tmp-1fff02dba18f76930a5223fde338d6f7' -d '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2d8f054c'
[19.4MiB/4837.72s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/2d8f054c'
[19.4MiB/4837.89s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/545b8bd0'
[19.4MiB/4838.62s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/edec393c'
[19.3MiB/4838.75s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/ecb67570'
[19.3MiB/4839.13s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/eea9476b'
[19.2MiB/4839.72s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/004036c0'
[19.2MiB/4842.41s] Executing async command (CWD): rm -rf '/Users/st/scripts/projects/project_ci-customer2/src/vendor/composer/45511067'
[18.1MiB/4842.62s] Downloading https://repo.packagist.com/cabag/downloads/
[18.1MiB/4843.04s] [201] https://repo.packagist.com/cabag/downloads/
[17.9MiB/4843.04s] The following exception is caused by a process timeout
[17.9MiB/4843.04s] Check https://getcomposer.org/doc/06-config.md#process-timeout for details

In Process.php line 1204:
                                                                                                                       
  [Symfony\Component\Process\Exception\ProcessTimedOutException]                                                       
  The process "(git checkout 'typo3-v11' -- || git checkout -B 'typo3-v11' 'composer/typo3-v11' --) && git reset --ha  
  rd '4acb780ceedc3d9cbf064a5e0699d0cf32f28056' --" exceeded the timeout of 300 seconds.                               
                                                                                                                       

Exception trace:
  at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/symfony/process/Process.php:1204
 Symfony\Component\Process\Process->checkTimeout() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/symfony/process/Process.php:430
 Symfony\Component\Process\Process->wait() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/symfony/process/Process.php:254
 Symfony\Component\Process\Process->run() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Util/ProcessExecutor.php:134
 Composer\Util\ProcessExecutor->doExecute() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Util/ProcessExecutor.php:76
 Composer\Util\ProcessExecutor->execute() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Downloader/GitDownloader.php:482
 Composer\Downloader\GitDownloader->updateToCommit() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Downloader/GitDownloader.php:143
 Composer\Downloader\GitDownloader->doInstall() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Downloader/VcsDownloader.php:137
 Composer\Downloader\VcsDownloader->install() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Downloader/DownloadManager.php:270
 Composer\Downloader\DownloadManager->install() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer/LibraryInstaller.php:278
 Composer\Installer\LibraryInstaller->installCode() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer/LibraryInstaller.php:152
 Composer\Installer\LibraryInstaller->install() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer/InstallationManager.php:464
 Composer\Installer\InstallationManager->install() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer/InstallationManager.php:392
 Composer\Installer\InstallationManager->Composer\Installer\{closure}() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/react/promise/src/FulfilledPromise.php:28
 React\Promise\FulfilledPromise->then() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer/InstallationManager.php:393
 Composer\Installer\InstallationManager->executeBatch() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer/InstallationManager.php:334
 Composer\Installer\InstallationManager->downloadAndExecuteBatch() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer/InstallationManager.php:242
 Composer\Installer\InstallationManager->execute() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer.php:786
 Composer\Installer->doInstall() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer.php:616
 Composer\Installer->doUpdate() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Installer.php:281
 Composer\Installer->run() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Command/RequireCommand.php:477
 Composer\Command\RequireCommand->doUpdate() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Command/RequireCommand.php:331
 Composer\Command\RequireCommand->execute() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/symfony/console/Command/Command.php:298
 Symfony\Component\Console\Command\Command->run() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/symfony/console/Application.php:1028
 Symfony\Component\Console\Application->doRunCommand() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/symfony/console/Application.php:299
 Symfony\Component\Console\Application->doRun() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Console/Application.php:375
 Composer\Console\Application->doRun() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/vendor/symfony/console/Application.php:171
 Symfony\Component\Console\Application->run() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/src/Composer/Console/Application.php:139
 Composer\Console\Application->run() at phar:///usr/local/Cellar/composer/2.4.4/bin/composer/bin/composer:88
 require() at /usr/local/Cellar/composer/2.4.4/bin/composer:29

require [--dev] [--dry-run] [--prefer-source] [--prefer-dist] [--prefer-install PREFER-INSTALL] [--fixed] [--no-suggest] [--no-progress] [--no-update] [--no-install] [--no-audit] [--audit-format AUDIT-FORMAT] [--update-no-dev] [-w|--update-with-dependencies] [-W|--update-with-all-dependencies] [--with-dependencies] [--with-all-dependencies] [--ignore-platform-req IGNORE-PLATFORM-REQ] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [--sort-packages] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--apcu-autoloader-prefix APCU-AUTOLOADER-PREFIX] [--] [<packages>...]

@CDRO
Copy link
Contributor Author

CDRO commented Dec 13, 2022

@Seldaek I think I figured it out.
This probably happened because I ran out of space on my macbook. I've done some cleaning up and don't run into this kind of problems anymore.

So clearly, this is not a problem of composer itself but on the host machine. But maybe, just maybe, a quick "enough space available on destination device" could be added sometime in the future.

You can close this issue, unless you'd like to pursue the idea of an available diskspace check later on.

Best Regards
Tizian

@Seldaek
Copy link
Member

Seldaek commented Dec 13, 2022

We do have some warning if you have less than 1MB free https://github.com/composer/composer/blob/main/src/Composer/Console/Application.php#L439-L452 - but you didn't see those, maybe we shuold increase the limit a bit?

@CDRO
Copy link
Contributor Author

CDRO commented Dec 13, 2022

I think it depends on the systems, but 1MB does indeed seem a bit low. In my case, a standard project can have a vendor folder between 20 and 200M of data (the latter is starting to get into node_modules areas, I should probably look into these anyway), but I guess a "normal" installation can easily rack up some 20 to 50 MB of data, so maybe make it configurable and set a default to 50-100 MB?

@Seldaek
Copy link
Member

Seldaek commented Dec 17, 2022

Bumped the warning to appear if things fail and disk space is <100MB, we'll see how this goes. I don't think it's worth the effort to make this configurable tho

emahorvat52 pushed a commit to emahorvat52/composer that referenced this issue Feb 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants