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

Installation request of project package could only satisfy by itself #9949

Closed
reneroboter opened this issue Jun 7, 2021 · 6 comments
Closed
Labels

Comments

@reneroboter
Copy link

My composer.json:

{
    "name": "bmh/backend",
    "description": "",
    "type": "project",
    "license": "proprietary",
    "require": {
        "php": "^7.4",
        "ext-ctype": "*",
        "ext-iconv": "*",
        "ext-json": "*",
        "ext-mbstring": "*",
        "antishov/doctrine-extensions-bundle": "^1.4",
        "cmdisp/monolog-microsoft-teams": "^1.1",
        "craue/geo-bundle": "^1.8",
        "friendsofphp/php-cs-fixer": "^2.16",
        "friendsofsymfony/rest-bundle": "^2.6",
        "geocoder-php/nominatim-provider": "^5.0",
        "geocoder-php/chain-provider": "^4.3",
        "geocoder-php/arcgis-online-provider": "^4.3",
        "gesdinet/jwt-refresh-token-bundle": "^0.8.2",
        "guzzlehttp/psr7": "^1.8",
        "jms/serializer-bundle": "^3.4",
        "lexik/jwt-authentication-bundle": "^2.6",
        "nelmio/cors-bundle": "^1.5",
        "nyholm/psr7": "^1.4",
        "scienta/doctrine-json-functions": "^4.1",
        "sensio/framework-extra-bundle": "^5.5",
        "symfony/apache-pack": "^1.0",
        "symfony/console": "4.4.*",
        "symfony/dotenv": "4.4.*",
        "symfony/expression-language": "4.4.*",
        "symfony/flex": "^1.3.1",
        "symfony/form": "4.4.*",
        "symfony/framework-bundle": "4.4.*",
        "symfony/http-client": "4.4.*",
        "symfony/lock": "4.4.*",
        "symfony/mailer": "4.4.*",
        "symfony/mailgun-mailer": "4.4.*",
        "symfony/monolog-bundle": "^3.4",
        "symfony/orm-pack": "^1.0",
        "symfony/security-bundle": "4.4.*",
        "symfony/translation": "4.4.*",
        "symfony/twig-bundle": "4.4.*",
        "symfony/validator": "4.4.*",
        "symfony/yaml": "4.4.*",
        "willdurand/geocoder-bundle": "^5.0"
    },
    "require-dev": {
        "captainhook/captainhook": "^5.3",
        "dama/doctrine-test-bundle": "^6.2",
        "doctrine/doctrine-fixtures-bundle": "^3.2",
        "liip/functional-test-bundle": "^4.2",
        "phpunit/phpunit": "^8.3",
        "liip/test-fixtures-bundle": "^1.0",
        "symfony/maker-bundle": "^1.14",
        "symfony/phpunit-bridge": "^5.1",
        "symfony/profiler-pack": "^1.0",
        "symfony/test-pack": "^1.0",
        "vimeo/psalm": "^3.6"
    },
    "config": {
        "platform": {
            "php": "7.4.16"
        },
        "preferred-install": {
            "*": "dist"
        },
        "sort-packages": true
    },
    "autoload": {
        "psr-4": {
            "App\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "App\\Tests\\": "tests/"
        }
    },
    "replace": {
        "paragonie/random_compat": "2.*",
        "symfony/polyfill-ctype": "*",
        "symfony/polyfill-iconv": "*",
        "symfony/polyfill-mbstring": "*",
        "symfony/polyfill-php73": "*",
        "symfony/polyfill-php72": "*",
        "symfony/polyfill-php71": "*",
        "symfony/polyfill-php70": "*",
        "symfony/polyfill-php56": "*"
    },
    "scripts": {
        "auto-scripts": {
            "cache:clear": "symfony-cmd",
            "assets:install %PUBLIC_DIR%": "symfony-cmd"
        },
        "post-install-cmd": [
            "@auto-scripts"
        ],
        "post-update-cmd": [
            "@auto-scripts"
        ],
        "code": [
            "@code:php-cs-fixer"
        ],
        "code:php-cs-fixer": [
            "php-cs-fixer fix --config .php_cs --cache-file=var/phpcs.cache"
        ]
    },
    "conflict": {
        "symfony/symfony": "*"
    },
    "extra": {
        "symfony": {
            "allow-contrib": false,
            "require": "4.4.*"
        }
    },
    "minimum-stability": "dev"
}

Output of composer diagnose:

Checking composer.json: OK
Checking platform settings: OK
Checking git settings: OK
Checking http connectivity to packagist: OK
Checking https connectivity to packagist: OK
Checking github.com rate limit: 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: You are not running the latest stable version, run `composer self-update` to update (1.10.1 => 2.1.2)
Composer version: 1.10.1
PHP version: 7.4.16 - Package overridden via config.platform (same as actual)
PHP binary path: /usr/local/bin/php
OpenSSL version: OpenSSL 1.1.1d  10 Sep 2019

When I run this command:

lando composer req sylius/sylius:^1.9 --update-with-dependencies -vvvv

I get the following output:

lando 16:32:53 VERBOSE ==> starting bootstrap at level engine... 
lando 16:32:53 SILLY ==> it's not particularly silly, is it? 
lando 16:32:53 VERBOSE ==> config bootstrap beginning... 
lando 16:32:53 DEBUG ==> emitting event pre-bootstrap-config 
lando 16:32:53 SILLY ==> event pre-bootstrap-config has 0 listeners 
lando 16:32:53 SILLY ==> loading event pre-engine-start priority 2 
lando 16:32:53 SILLY ==> loading event pre-engine-start priority 3 
lando 16:32:53 DEBUG ==> plugin lando-core loaded from /snapshot/lando/build/cli/plugins/lando-core/index.js 
lando 16:32:53 SILLY ==> plugin lando-core has COLUMNS=256, LANDO=ON, LANDO_WEBROOT_USER=www-data, LANDO_WEBROOT_GROUP=www-data, TERM=xterm, LANDO_HOST_UID=1000, LANDO_HOST_GID=1000, LANDO_HOST_USER=roboter, LANDO_CA_CERT=/lando/certs/lndo.site.pem, LANDO_CA_KEY=/lando/certs/lndo.site.key, LANDO_CONFIG_DIR=/home/roboter/.lando, LANDO_DOMAIN=lndo.site, LANDO_HOST_HOME=/home/roboter, LANDO_HOST_OS=linux, LANDO_HOST_IP=172.16.2.145, LANDO_LEIA=0, LANDO_MOUNT=/app, io.lando.container=TRUE, io.lando.id=2ecad73669f8690325a62dab07987d5768bdeb7a, gid=1000, uid=1000, username=roboter, bindAddress=127.0.0.1, caCert=/home/roboter/.lando/certs/lndo.site.pem, caDomain=lndo.site, caKey=/home/roboter/.lando/certs/lndo.site.key, caProject=landocasetupkenobi38ahsoka2ecad73669f8690325a62dab07987d5768bdeb7a, maxKeyWarning=10
lando 16:32:53 DEBUG ==> plugin lando-events loaded from /snapshot/lando/build/cli/plugins/lando-events/index.js 
lando 16:32:53 SILLY ==> plugin lando-events has undefined
lando 16:32:53 SILLY ==> loading event pre-engine-start priority 1 
lando 16:32:53 SILLY ==> loading event pre-engine-start priority 2 
lando 16:32:53 SILLY ==> loading event pre-engine-start priority 3 
lando 16:32:53 DEBUG ==> plugin lando-networking loaded from /snapshot/lando/build/cli/plugins/lando-networking/index.js 
lando 16:32:53 SILLY ==> plugin lando-networking has networkBridge=lando_bridge_network
lando 16:32:53 SILLY ==> loading event post-bootstrap-config priority 5 
lando 16:32:53 DEBUG ==> plugin lando-proxy loaded from /snapshot/lando/build/cli/plugins/lando-proxy/index.js 
lando 16:32:53 SILLY ==> plugin lando-proxy has proxy=ON, proxyName=landoproxyhyperion5000gandalfedition, proxyCache=proxyCache, proxyCommand=[/entrypoint.sh, --log.level=DEBUG, --api.insecure=true, --api.dashboard=false, --providers.docker=true, --entrypoints.https.address=:443, --entrypoints.http.address=:80, --providers.docker.exposedbydefault=false, --providers.file.directory=/proxy_config, --providers.file.watch=true], , proxyDefaultCert=/certs/cert.crt, proxyDefaultKey=/certs/cert.key, proxyHttpPort=80, proxyHttpsPort=443, proxyHttpFallbacks=[8000, 8080, 8888, 8008], proxyHttpsFallbacks=[444, 4433, 4444, 4443], proxyPassThru=true, proxyBindAddress=127.0.0.1, proxyDomain=lndo.site, proxyIp=127.0.0.1
lando 16:32:53 DEBUG ==> plugin lando-recipes loaded from /snapshot/lando/build/cli/plugins/lando-recipes/index.js 
lando 16:32:53 SILLY ==> plugin lando-recipes has undefined
lando 16:32:53 DEBUG ==> plugin lando-services loaded from /snapshot/lando/build/cli/plugins/lando-services/index.js 
lando 16:32:53 SILLY ==> plugin lando-services has undefined
lando 16:32:53 DEBUG ==> plugin lando-sharing loaded from /snapshot/lando/build/cli/plugins/lando-sharing/index.js 
lando 16:32:53 SILLY ==> plugin lando-sharing has undefined
lando 16:32:53 DEBUG ==> plugin lando-test loaded from /snapshot/lando/build/cli/plugins/lando-test/index.js 
lando 16:32:53 SILLY ==> plugin lando-test has plugin-test=true
lando 16:32:53 SILLY ==> loading event cli-ssh-run priority 2 
lando 16:32:53 DEBUG ==> plugin lando-tooling loaded from /snapshot/lando/build/cli/plugins/lando-tooling/index.js 
lando 16:32:53 SILLY ==> plugin lando-tooling has undefined
lando 16:32:53 SILLY ==> loading event cli-ssh-run priority 5 
lando 16:32:53 DEBUG ==> plugin lando-lagoon loaded from /snapshot/lando/build/cli/integrations/lando-lagoon/index.js 
lando 16:32:53 SILLY ==> plugin lando-lagoon has undefined
lando 16:32:53 SILLY ==> loading event cli-pull-answers priority 5 
lando 16:32:53 SILLY ==> loading event cli-push-answers priority 5 
lando 16:32:53 SILLY ==> loading event cli-switch-answers priority 5 
lando 16:32:53 DEBUG ==> plugin lando-pantheon loaded from /snapshot/lando/build/cli/integrations/lando-pantheon/index.js 
lando 16:32:53 SILLY ==> plugin lando-pantheon has undefined
lando 16:32:53 SILLY ==> loading event pre-command-runner priority 5 
lando 16:32:53 SILLY ==> loading event cli-ssh-run priority 5 
lando 16:32:53 DEBUG ==> plugin lando-platformsh loaded from /snapshot/lando/build/cli/integrations/lando-platformsh/index.js 
lando 16:32:53 SILLY ==> plugin lando-platformsh has undefined
lando 16:32:53 DEBUG ==> emitting event post-bootstrap-config 
lando 16:32:53 SILLY ==> event post-bootstrap-config has 1 listeners 
lando 16:32:53 VERBOSE ==> building proxy config... 
lando 16:32:53 VERBOSE ==> config bootstrap completed. 
lando 16:32:53 VERBOSE ==> tasks bootstrap beginning... 
lando 16:32:53 DEBUG ==> emitting event pre-bootstrap-tasks 
lando 16:32:53 SILLY ==> event pre-bootstrap-tasks has 0 listeners 
lando 16:32:53 DEBUG ==> autoloaded task config 
lando 16:32:53 DEBUG ==> autoloaded task destroy 
lando 16:32:53 DEBUG ==> autoloaded task info 
lando 16:32:53 DEBUG ==> autoloaded task list 
lando 16:32:53 DEBUG ==> autoloaded task logs 
lando 16:32:53 DEBUG ==> autoloaded task poweroff 
lando 16:32:53 DEBUG ==> autoloaded task rebuild 
lando 16:32:53 DEBUG ==> autoloaded task restart 
lando 16:32:53 DEBUG ==> autoloaded task share 
lando 16:32:53 DEBUG ==> autoloaded task start 
lando 16:32:53 DEBUG ==> autoloaded task stop 
lando 16:32:53 DEBUG ==> autoloaded task version 
lando 16:32:53 DEBUG ==> autoloaded task init 
lando 16:32:53 DEBUG ==> autoloaded task ssh 
lando 16:32:53 DEBUG ==> emitting event post-bootstrap-tasks 
lando 16:32:53 SILLY ==> event post-bootstrap-tasks has 0 listeners 
lando 16:32:53 VERBOSE ==> tasks bootstrap completed. 
lando 16:32:53 VERBOSE ==> engine bootstrap beginning... 
lando 16:32:53 DEBUG ==> emitting event pre-bootstrap-engine 
lando 16:32:53 SILLY ==> event pre-bootstrap-engine has 0 listeners 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-core/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-proxy/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-recipes/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-services/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-sharing/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/integrations/lando-lagoon/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/integrations/lando-pantheon/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/integrations/lando-platformsh/scripts to /home/roboter/.lando/scripts and set to mode 755 
lando 16:32:53 DEBUG ==> emitting event post-bootstrap-engine 
lando 16:32:53 SILLY ==> event post-bootstrap-engine has 0 listeners 
lando 16:32:53 VERBOSE ==> engine bootstrap completed. 
lando 16:32:53 VERBOSE ==> bootstrap completed. 
lando 16:32:53 DEBUG ==> emitting event post-bootstrap 
lando 16:32:53 SILLY ==> event post-bootstrap has 0 listeners 
lando 16:32:53 VERBOSE ==> docker-engine exists: true 
lando 16:32:53 VERBOSE ==> docker-compose exists: true 
lando 16:32:53 DEBUG ==> emitting event cli-answers 
lando 16:32:53 SILLY ==> event cli-answers has 0 listeners 
lando 16:32:53 DEBUG ==> emitting event cli-composer-answers 
lando 16:32:53 SILLY ==> event cli-composer-answers has 0 listeners 
lando 16:32:53 DEBUG ==> emitting event cli-run 
lando 16:32:53 SILLY ==> event cli-run has 0 listeners 
lando 16:32:53 DEBUG ==> emitting event cli-composer-run 
lando 16:32:53 SILLY ==> event cli-composer-run has 0 listeners 
lando 16:32:53 DEBUG ==> emitting event pre-command-runner 
lando 16:32:53 SILLY ==> event pre-command-runner has 1 listeners 
lando 16:32:53 DEBUG ==> emitting event pre-composer 
lando 16:32:53 SILLY ==> event pre-composer has 0 listeners 
lando 16:32:53 DEBUG ==> process pid4 running /usr/bin/docker exec dbmmbackend_appserver_1 composer sylius/sylius:^1.9 cstdio=[inherit, pipe, pipe], silent=false, mode=attach, detached=false
lando 16:32:53 SILLY ==> process pid4 full command, running _=[/usr/bin/docker, exec, dbmmbackend_appserver_1, composer, sylius/sylius:^1.9], tty=true, interactive=true, user=www-data, workdir=/app, env=PHP_MEMORY_LIMIT=-1, ansi=req, update-with-dependencies=true, updateWithDependencies=true, v=[true, true, true, true]
lando 16:32:53 DEBUG ==> engine is up. 
                                       lando 16:32:53 DEBUG ==> docker is running. 
                                                                                   Reading ./composer.json
Loading config file ./composer.json
Checked CA file /etc/ssl/certs/ca-certificates.crt: valid
Executing command (/app): git branch --no-color --no-abbrev -v
Reading /var/www/.composer/composer.json
Loading config file /var/www/.composer/composer.json
Reading /app/vendor/composer/installed.json
Reading /var/www/.composer/vendor/composer/installed.json
Loading plugin Symfony\Flex\Flex
Downloading https://repo.packagist.org/packages.json
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2 is now available and you should upgrade. See https://getcomposer.org/2
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/packages.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2013.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2014.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2015.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2016.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2017.json from cache
lando 16:32:54 VERBOSE ==> checking docker version compatibility... 
                                                                    lando 16:32:54 DEBUG ==> compatibility results name=compose, link=https://docs.docker.com/compose/install/#install-compose-on-linux-systems, wants=1.23.0 - 1.27.4, version=1.27.4, semversion=1.27.4, semmin=1.23.0, semmax=1.27.4, dockerVersion=true, satisfied=true, name=engine, link=https://docs.docker.com/engine/install/, wants=18.09.3 - 19.04.0, version=19.03.14, semversion=19.3.14, semmin=18.9.3, semmax=19.4.0, dockerVersion=true, satisfied=true
                                                                                                                                                               Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2018.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2019.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-07.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-archived.json from cache
Downloading http://repo.packagist.org/p/provider-2020-10%24a1e10f0f89f0ea038773260ec24e8d713dbaacbc82c6910a1445cb8b3542b358.json
Downloading http://repo.packagist.org/p/provider-2021-01%24a2b54eb21c71bc2c0d8b41dab001bf271441c7586807aa0f17fd6566b1c60706.json
Downloading http://repo.packagist.org/p/provider-2021-04%249dcbe72203ce4418b9dec9db2bab76f578aa43f1a65fdbbfb7875e40a0456a9a.json
Downloading http://repo.packagist.org/p/provider-latest%24e0811f75f3927bd2ef97249c082f3541cd9cd2b219221b3d9a87dd2777e5aa84.json
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-latest.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-04.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-01.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-10.json into cache
Loading plugin PackageVersions\Installer
Running 1.10.1 (2020-03-13 20:34:27) with PHP 7.4.16 on Linux / 5.4.0-74-generic
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/aliases.json from cache
Downloading https://flex.symfony.com/aliases.json
Downloading https://repo.packagist.org/packages.json
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2 is now available and you should upgrade. See https://getcomposer.org/2
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/packages.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2013.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2014.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2015.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2016.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2017.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2018.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2019.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-07.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-10.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-01.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-04.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-archived.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-latest.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$sylius.json from cache
./composer.json has been updated
Reading ./composer.json
Loading config file ./composer.json
Executing command (/app): git branch --no-color --no-abbrev -v
Reading /var/www/.composer/composer.json
Loading config file /var/www/.composer/composer.json
Reading /app/vendor/composer/installed.json
Reading /var/www/.composer/vendor/composer/installed.json
Loading plugin Symfony\Flex\Flex_composer_tmp0
Loading plugin PackageVersions\Installer_composer_tmp1
Reading ./composer.lock
Loading composer repositories with package information
Downloading https://repo.packagist.org/packages.json
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2 is now available and you should upgrade. See https://getcomposer.org/2
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/packages.json into cache
Updating dependencies (including require-dev)
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2013.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2014.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2015.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2016.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2017.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2018.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2019.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-07.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-10.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-01.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-04.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-archived.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-latest.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-antishov$doctrine-extensions-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-cmdisp$monolog-microsoft-teams.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-craue$geo-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofphp$php-cs-fixer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofsymfony$rest-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$arcgis-online-provider.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$chain-provider.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$nominatim-provider.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-gesdinet$jwt-refresh-token-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp$psr7.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jms$serializer-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lexik$jwt-authentication-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-nelmio$cors-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-nyholm$psr7.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-scienta$doctrine-json-functions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sensio$framework-extra-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$sylius.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$apache-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$console.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dotenv.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$expression-language.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$flex.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$form.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$framework-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-client.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$lock.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailgun-mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$monolog-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$orm-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$translation.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$twig-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$validator.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$yaml.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$geocoder-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-captainhook$captainhook.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-dama$doctrine-test-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-fixtures-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-liip$functional-test-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$phpunit.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-liip$test-fixtures-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$maker-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$phpunit-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$profiler-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$test-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-vimeo$psalm.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$apache-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$console.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dotenv.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$expression-language.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$flex.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$form.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$framework-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-client.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$lock.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailgun-mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$monolog-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$orm-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$translation.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$twig-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$validator.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$yaml.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$maker-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$phpunit-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$profiler-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$test-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-behat$transliterator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-composer$package-versions-deprecated.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-composer$semver.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-composer$xdebug-handler.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$annotations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$collections.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$common.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$dbal.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$deprecations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-migrations-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$event-manager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$inflector.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$instantiator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$lexer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$migrations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$orm.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$persistence.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$reflection.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$sql-formatter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-egulias$email-validator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofphp$proxy-manager-lts.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-gedmo$doctrine-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$common-http.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$plugin.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jms$metadata.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jms$serializer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-code.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-eventmanager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-zendframework-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lcobucci$clock.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lcobucci$jwt.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-monolog$monolog.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-namshi$jose.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-cs-fixer$diff.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$discovery.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$httplug.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$message-factory.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$promise.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpstan$phpdoc-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$container.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-client.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-factory.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-message.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$log.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$simple-cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ralouphie$getallheaders.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$cache.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$cache-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$config.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$debug.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dependency-injection.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$doctrine-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$error-handler.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$event-dispatcher.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$event-dispatcher-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$filesystem.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$finder.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-client-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-foundation.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-kernel.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$inflector.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$intl.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mime.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$monolog-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$options-resolver.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-icu.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-idn.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-normalizer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php80.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php81.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$process.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$property-access.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$routing.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-core.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-csrf.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-guard.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-http.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$service-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$stopwatch.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$translation-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$twig-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$var-dumper.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$var-exporter.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-twig$twig.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$geocoder.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$jsonp-callback-validator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$negotiation.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-amphp$amp.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-amphp$byte-stream.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-dnoegel$php-xdg-base-dir.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$data-fixtures.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-felixfbecker$advanced-json-rpc.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-felixfbecker$language-server-protocol.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-myclabs$deep-copy.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-netresearch$jsonmapper.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-nikic$php-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-openlss$lib-array2xml.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phar-io$manifest.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phar-io$version.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor$reflection-common.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor$reflection-docblock.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor$type-resolver.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpspec$prophecy.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-code-coverage.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-file-iterator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-text-template.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-timer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-token-stream.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$code-unit-reverse-lookup.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$comparator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$diff.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$environment.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$exporter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$global-state.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$object-enumerator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$object-reflector.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$recursion-context.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$resource-operations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$type.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$version.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastianfeldmann$camino.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastianfeldmann$cli.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastianfeldmann$git.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$browser-kit.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$css-selector.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$deprecation-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dom-crawler.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$web-profiler-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-theseer$tokenizer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webmozart$assert.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webmozart$glob.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webmozart$path-util.json from cache
Downloading http://repo.packagist.org/p/symfony/polyfill-php70%241ac1bf53207a7e7dc3affe8ded4d3de7a357f581cadcc52a4ba4e7afa050d395.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php72.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-api-platform$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-babdev$pagerfanta-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-fakerphp$faker.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$gaufrette.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$knp-gaufrette-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$knp-menu.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$knp-menu-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-stdlib.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-liip$imagine-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$payum.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$payum-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$guzzle6-adapter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-polishsymfonycommunity$symfony-mocker-container.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ramsey$uuid.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$block-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-stof$doctrine-extensions-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-swiftmailer$swiftmailer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$association-hydrator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$doctrine-migrations-extra-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$polyfill-symfony-event-dispatcher.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$polyfill-symfony-framework-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$polyfill-symfony-security.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$fixtures-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$grid.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$grid-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$mailer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$mailer-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$registry.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$resource.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$resource-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$theme-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$asset.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$messenger.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Downloading http://repo.packagist.org/p/symfony/polyfill-iconv%24eda3f50ec0d5bb28df8734717f449815c4398c4dd24ba64f915512ecf229aa6d.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-mbstring.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$property-info.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$proxy-manager-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$serializer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$string.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$swiftmailer-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$templating.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$thanks.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-twig$intl-extra.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$hateoas.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$hateoas-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-winzou$state-machine-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-stdlib.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofsymfony$oauth-server-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$admin-api-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-hydrator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ocramius$package-versions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$client-implementation.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-message-implementation.json from cache
Downloading http://repo.packagist.org/p/symfony/polyfill-php56%24b1254589e41cf920d5eaadf26a4ae7950e94e521cc77bf3ed9ee1ce264ba965c.json
Downloading http://repo.packagist.org/p/symfony/polyfill-ctype%249136b5698d8d0641a4f269e4598c79992afa1eb9187e79f4a03b2cac911bb026.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-fig$link-util.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$web-link.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-pagerfanta$pagerfanta.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-imagine$imagine.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$iso4217.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$message.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-alcohol$iso4217.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-components.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp$guzzle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-mockery$mockery.json from cache
Downloading http://repo.packagist.org/p/paragonie/random_compat%2464292f3857d32cfe177fcc71dcac5769bc9ef46221d3e1ce526e0fa4fa68cfe9.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$doctrine-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$form-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$twig-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-marcj$topsort.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-pagerfanta$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-winzou$state-machine.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofsymfony$oauth2-php.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$link.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-clue$stream-filter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-schemes.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-manipulations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jeremykendall$php-domain-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-interfaces.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-hostname-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp$promises.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hamcrest$hamcrest-php.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-twig$extensions.json from cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-paragonie$random-compat.json into cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Restricting packages listed in "symfony/symfony" to "4.4.*"
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-ctype.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php56.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-util.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-grapheme.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ocramius$proxy-manager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-code.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webimpress$safe-writer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-eventmanager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-athletic$athletic.json from cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-iconv.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php70.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php73.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$panther.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-facebook$webdriver.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jdorn$sql-formatter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-cache-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-acl.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$event-dispatcher.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-squizlabs$php-codesniffer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-hydrator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpseclib$phpseclib.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lcobucci$jose-parsing.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-paragonie$constant-time-encoding.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$compiler.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$consistency.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$exception.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$file.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$iterator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$math.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$protocol.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$regex.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$visitor.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$event.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$stream.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$zformat.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$ustring.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$string.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-invoker.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$cli-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$code-unit.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$complexity.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$lines-of-code.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-dflydev$markdown.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-babdev$pagerfanta.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$symfony.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$contracts.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-webdriver$webdriver.json from cache
Resolving dependencies through SAT

Dependency resolution completed in 0.003 seconds
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - sylius/sylius 1.10.x-dev conflicts with bmh/backend[dev-test].
    - sylius/sylius 1.9.x-dev conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-ALPHA.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-ALPHA.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-BETA.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-BETA.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-BETA.3 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-RC.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-RC.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.3 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.4 conflicts with bmh/backend[dev-test].
    - sylius/sylius 1.11.x-dev conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.10.0-alpha.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.10.0-beta.1 conflicts with bmh/backend[dev-test].
    - Installation request for bmh/backend dev-test -> satisfiable by bmh/backend[dev-test].
    - Installation request for sylius/sylius ^1.9 -> satisfiable by sylius/sylius[1.10.x-dev, 1.9.x-dev, 1.11.x-dev, v1.10.0-alpha.1, v1.10.0-beta.1, v1.9.0, v1.9.0-ALPHA.1, v1.9.0-ALPHA.2, v1.9.0-BETA.1, v1.9.0-BETA.2, v1.9.0-BETA.3, v1.9.0-RC.1, v1.9.0-RC.2, v1.9.1, v1.9.2, v1.9.3, v1.9.4].


Installation failed, reverting ./composer.json to its original content.
lando 16:33:14 DEBUG ==> process pid4 finished with exit code 2 
lando 16:33:14 SILLY ==> process pid4 had output stdout=Reading ./composer.json
Loading config file ./composer.json
Checked CA file /etc/ssl/certs/ca-certificates.crt: valid
Executing command (/app): git branch --no-color --no-abbrev -v
Reading /var/www/.composer/composer.json
Loading config file /var/www/.composer/composer.json
Reading /app/vendor/composer/installed.json
Reading /var/www/.composer/vendor/composer/installed.json
Loading plugin Symfony\Flex\Flex
Downloading https://repo.packagist.org/packages.json
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2 is now available and you should upgrade. See https://getcomposer.org/2
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/packages.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2013.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2014.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2015.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2016.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2017.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2018.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2019.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-07.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-archived.json from cache
Downloading http://repo.packagist.org/p/provider-2020-10%24a1e10f0f89f0ea038773260ec24e8d713dbaacbc82c6910a1445cb8b3542b358.json
Downloading http://repo.packagist.org/p/provider-2021-01%24a2b54eb21c71bc2c0d8b41dab001bf271441c7586807aa0f17fd6566b1c60706.json
Downloading http://repo.packagist.org/p/provider-2021-04%249dcbe72203ce4418b9dec9db2bab76f578aa43f1a65fdbbfb7875e40a0456a9a.json
Downloading http://repo.packagist.org/p/provider-latest%24e0811f75f3927bd2ef97249c082f3541cd9cd2b219221b3d9a87dd2777e5aa84.json
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-latest.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-04.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-01.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-10.json into cache
Loading plugin PackageVersions\Installer
Running 1.10.1 (2020-03-13 20:34:27) with PHP 7.4.16 on Linux / 5.4.0-74-generic
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/aliases.json from cache
Downloading https://flex.symfony.com/aliases.json
Downloading https://repo.packagist.org/packages.json
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2 is now available and you should upgrade. See https://getcomposer.org/2
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/packages.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2013.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2014.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2015.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2016.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2017.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2018.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2019.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-07.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-10.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-01.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-04.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-archived.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-latest.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$sylius.json from cache
./composer.json has been updated
Reading ./composer.json
Loading config file ./composer.json
Executing command (/app): git branch --no-color --no-abbrev -v
Reading /var/www/.composer/composer.json
Loading config file /var/www/.composer/composer.json
Reading /app/vendor/composer/installed.json
Reading /var/www/.composer/vendor/composer/installed.json
Loading plugin Symfony\Flex\Flex_composer_tmp0
Loading plugin PackageVersions\Installer_composer_tmp1
Reading ./composer.lock
Loading composer repositories with package information
Downloading https://repo.packagist.org/packages.json
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2 is now available and you should upgrade. See https://getcomposer.org/2
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/packages.json into cache
Updating dependencies (including require-dev)
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2013.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2014.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2015.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2016.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2017.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2018.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2019.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-07.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2020-10.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-01.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-2021-04.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-archived.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/p-provider-latest.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-antishov$doctrine-extensions-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-cmdisp$monolog-microsoft-teams.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-craue$geo-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofphp$php-cs-fixer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofsymfony$rest-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$arcgis-online-provider.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$chain-provider.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$nominatim-provider.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-gesdinet$jwt-refresh-token-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp$psr7.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jms$serializer-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lexik$jwt-authentication-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-nelmio$cors-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-nyholm$psr7.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-scienta$doctrine-json-functions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sensio$framework-extra-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$sylius.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$apache-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$console.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dotenv.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$expression-language.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$flex.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$form.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$framework-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-client.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$lock.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailgun-mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$monolog-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$orm-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$translation.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$twig-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$validator.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$yaml.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$geocoder-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-captainhook$captainhook.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-dama$doctrine-test-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-fixtures-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-liip$functional-test-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$phpunit.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-liip$test-fixtures-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$maker-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$phpunit-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$profiler-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$test-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-vimeo$psalm.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$apache-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$console.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dotenv.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$expression-language.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$flex.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$form.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$framework-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-client.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$lock.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mailgun-mailer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$monolog-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$orm-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$translation.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$twig-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$validator.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$yaml.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$maker-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$phpunit-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$profiler-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$test-pack.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-behat$transliterator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-composer$package-versions-deprecated.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-composer$semver.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-composer$xdebug-handler.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$annotations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$collections.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$common.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$dbal.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$deprecations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-migrations-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$event-manager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$inflector.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$instantiator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$lexer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$migrations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$orm.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$persistence.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$reflection.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$sql-formatter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-egulias$email-validator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofphp$proxy-manager-lts.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-gedmo$doctrine-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$common-http.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-geocoder-php$plugin.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jms$metadata.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jms$serializer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-code.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-eventmanager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-zendframework-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lcobucci$clock.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lcobucci$jwt.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-monolog$monolog.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-namshi$jose.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-cs-fixer$diff.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$discovery.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$httplug.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$message-factory.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$promise.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpstan$phpdoc-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$container.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-client.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-factory.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-message.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$log.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$simple-cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ralouphie$getallheaders.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$cache.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$cache-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$config.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$debug.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dependency-injection.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$doctrine-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$error-handler.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$event-dispatcher.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$event-dispatcher-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$filesystem.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$finder.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-client-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-foundation.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$http-kernel.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$inflector.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$intl.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$mime.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$monolog-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$options-resolver.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-icu.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-idn.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-normalizer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php80.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php81.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$process.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$property-access.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$routing.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-core.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-csrf.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-guard.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-http.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$service-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$stopwatch.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$translation-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$twig-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$var-dumper.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$var-exporter.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-twig$twig.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$geocoder.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$jsonp-callback-validator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$negotiation.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-amphp$amp.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-amphp$byte-stream.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-dnoegel$php-xdg-base-dir.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$data-fixtures.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-felixfbecker$advanced-json-rpc.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-felixfbecker$language-server-protocol.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-myclabs$deep-copy.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-netresearch$jsonmapper.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-nikic$php-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-openlss$lib-array2xml.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phar-io$manifest.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phar-io$version.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor$reflection-common.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor$reflection-docblock.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor$type-resolver.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpspec$prophecy.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-code-coverage.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-file-iterator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-text-template.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-timer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-token-stream.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$code-unit-reverse-lookup.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$comparator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$diff.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$environment.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$exporter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$global-state.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$object-enumerator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$object-reflector.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$recursion-context.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$resource-operations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$type.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$version.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastianfeldmann$camino.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastianfeldmann$cli.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastianfeldmann$git.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$browser-kit.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$css-selector.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$deprecation-contracts.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$dom-crawler.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$web-profiler-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-theseer$tokenizer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webmozart$assert.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webmozart$glob.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webmozart$path-util.json from cache
Downloading http://repo.packagist.org/p/symfony/polyfill-php70%241ac1bf53207a7e7dc3affe8ded4d3de7a357f581cadcc52a4ba4e7afa050d395.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php72.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-api-platform$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-babdev$pagerfanta-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-fakerphp$faker.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$gaufrette.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$knp-gaufrette-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$knp-menu.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-knplabs$knp-menu-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-stdlib.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-liip$imagine-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$payum.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$payum-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$guzzle6-adapter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-polishsymfonycommunity$symfony-mocker-container.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ramsey$uuid.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$block-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-stof$doctrine-extensions-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-swiftmailer$swiftmailer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$association-hydrator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$doctrine-migrations-extra-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$polyfill-symfony-event-dispatcher.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$polyfill-symfony-framework-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius-labs$polyfill-symfony-security.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$fixtures-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$grid.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$grid-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$mailer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$mailer-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$registry.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$resource.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$resource-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$theme-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$asset.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$messenger.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Downloading http://repo.packagist.org/p/symfony/polyfill-iconv%24eda3f50ec0d5bb28df8734717f449815c4398c4dd24ba64f915512ecf229aa6d.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-mbstring.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$property-info.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$proxy-manager-bridge.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$serializer.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$string.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$swiftmailer-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$templating.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$thanks.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-twig$intl-extra.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$hateoas.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-willdurand$hateoas-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-winzou$state-machine-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-stdlib.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofsymfony$oauth-server-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sylius$admin-api-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-hydrator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ocramius$package-versions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$client-implementation.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$http-message-implementation.json from cache
Downloading http://repo.packagist.org/p/symfony/polyfill-php56%24b1254589e41cf920d5eaadf26a4ae7950e94e521cc77bf3ed9ee1ce264ba965c.json
Downloading http://repo.packagist.org/p/symfony/polyfill-ctype%249136b5698d8d0641a4f269e4598c79992afa1eb9187e79f4a03b2cac911bb026.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-fig$link-util.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$web-link.json from cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-pagerfanta$pagerfanta.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-imagine$imagine.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$iso4217.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-http$message.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-alcohol$iso4217.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-components.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-payum$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp$guzzle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-mockery$mockery.json from cache
Downloading http://repo.packagist.org/p/paragonie/random_compat%2464292f3857d32cfe177fcc71dcac5769bc9ef46221d3e1ce526e0fa4fa68cfe9.json
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$cache.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$doctrine-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$form-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sonata-project$twig-extensions.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-marcj$topsort.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-pagerfanta$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-winzou$state-machine.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-friendsofsymfony$oauth2-php.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$link.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-clue$stream-filter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-schemes.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-manipulations.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jeremykendall$php-domain-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-interfaces.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-league$uri-hostname-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp$promises.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hamcrest$hamcrest-php.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-twig$extensions.json from cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-paragonie$random-compat.json into cache
Reading /var/www/.composer/cache/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json
Restricting packages listed in "symfony/symfony" to "4.4.*"
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-ctype.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php56.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-util.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-intl-grapheme.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-ocramius$proxy-manager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-code.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-webimpress$safe-writer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-zendframework$zend-eventmanager.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-athletic$athletic.json from cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-iconv.json into cache
Writing /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php70.json into cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$polyfill-php73.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$panther.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-facebook$webdriver.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-jdorn$sql-formatter.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-doctrine$doctrine-cache-bundle.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security-acl.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$security.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-psr$event-dispatcher.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-squizlabs$php-codesniffer.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-laminas$laminas-hydrator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpseclib$phpseclib.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-lcobucci$jose-parsing.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-paragonie$constant-time-encoding.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$compiler.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$consistency.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$exception.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$file.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$iterator.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$math.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$protocol.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$regex.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$visitor.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$event.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$stream.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$zformat.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$ustring.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$core.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-hoa$string.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-phpunit$php-invoker.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$cli-parser.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$code-unit.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$complexity.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-sebastian$lines-of-code.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-dflydev$markdown.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-babdev$pagerfanta.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$symfony.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-symfony$contracts.json from cache
Reading /var/www/.composer/cache/repo/https---repo.packagist.org/provider-php-webdriver$webdriver.json from cache
Resolving dependencies through SAT

Dependency resolution completed in 0.003 seconds
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - sylius/sylius 1.10.x-dev conflicts with bmh/backend[dev-test].
    - sylius/sylius 1.9.x-dev conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-ALPHA.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-ALPHA.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-BETA.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-BETA.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-BETA.3 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-RC.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.0-RC.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.2 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.3 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.9.4 conflicts with bmh/backend[dev-test].
    - sylius/sylius 1.11.x-dev conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.10.0-alpha.1 conflicts with bmh/backend[dev-test].
    - sylius/sylius v1.10.0-beta.1 conflicts with bmh/backend[dev-test].
    - Installation request for bmh/backend dev-test -> satisfiable by bmh/backend[dev-test].
    - Installation request for sylius/sylius ^1.9 -> satisfiable by sylius/sylius[1.10.x-dev, 1.9.x-dev, 1.11.x-dev, v1.10.0-alpha.1, v1.10.0-beta.1, v1.9.0, v1.9.0-ALPHA.1, v1.9.0-ALPHA.2, v1.9.0-BETA.1, v1.9.0-BETA.2, v1.9.0-BETA.3, v1.9.0-RC.1, v1.9.0-RC.2, v1.9.1, v1.9.2, v1.9.3, v1.9.4].


Installation failed, reverting ./composer.json to its original content.
, stderr=Installation failed, reverting ./composer.json to its original content.
lando 16:33:14 DEBUG ==> engine is up. 

And I expected this to happen:

I don't know why I couldn't install the package sylius/sylius. I expect, that it should work. However, the project package himself its conflict with his self. That's startled me, because I don't get it. Why its bmh/backend having a conflict by itself? And why it has an installation request? It's the root composer package. In my point of view it's the problem why sylius/sylius couldn't be installed by composer.

Hopefully this is the right place for help. I think it's a composer issue and not an problem with sylius.

@Seldaek
Copy link
Member

Seldaek commented Jun 7, 2021

Can you try to "composer self-update --2" and try again with composer 2? It may fix it or at least hopefully give you a clearer error message.

@stof
Copy link
Contributor

stof commented Jun 8, 2021

With composer 2, the solver finds a solution.

@Seldaek Seldaek added the Support label Jun 8, 2021
@reneroboter
Copy link
Author

My composer --version

Composer version 2.0.7 2020-11-13 17:31:06

After the update. Composer showed me, that I also need to update the following packages. So please don't surprise that I modified the original command.

The new command is:

composer req sylius/sylius:^1.9 symfony/orm-pack:v2.1.0 friendsofsymfony/rest-bundle:^3.0 liip/functional-test-bundle:^4.4 symfony/profiler-pack:^1.0 symfony/test-pack:^1.0 --update-with-dependencies -vvvv

This is the output:

Reading ./composer.json
Loading config file /home/roboter/.config/composer/auth.json
Loading config file ./composer.json
Checked CA file /etc/ssl/certs/ca-certificates.crt: valid
Executing command (/home/roboter/PhpstormProjects/dbmm-backend): git branch -a --no-color --no-abbrev -v
Executing command (/home/roboter/PhpstormProjects/dbmm-backend): git rev-list master..test
Executing command (/home/roboter/PhpstormProjects/dbmm-backend): git rev-list develop..test
Reading /home/roboter/.config/composer/composer.json
Loading config file /home/roboter/.config/composer/auth.json
Loading config file /home/roboter/.config/composer/composer.json
Loading config file /home/roboter/.config/composer/auth.json
Reading /home/roboter/.config/composer/auth.json
Reading /home/roboter/PhpstormProjects/dbmm-backend/vendor/composer/installed.json
Reading /home/roboter/.config/composer/vendor/composer/installed.json
Loading plugin PackageVersions\Installer
Loading plugin Symfony\Flex\Flex
Running 2.0.2 (2020-10-25 23:03:59) with PHP 8.0.5 on Linux / 5.4.0-74-generic
Reading /home/roboter/.cache/composer/repo/https---flex.symfony.com/aliases.json from cache
Downloading https://flex.symfony.com/aliases.json if modified
[200] https://flex.symfony.com/aliases.json
Writing /home/roboter/.cache/composer/repo/https---flex.symfony.com/aliases.json into cache
Reading /home/roboter/.cache/composer/repo/https---flex.symfony.com/versions.json from cache
Downloading https://flex.symfony.com/versions.json if modified
[304] https://flex.symfony.com/versions.json
Downloading https://repo.packagist.org/packages.json
[200] https://repo.packagist.org/packages.json
Writing /home/roboter/.cache/composer/repo/https---repo.packagist.org/packages.json into cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~sylius.json from cache
Downloading https://repo.packagist.org/p2/sylius/sylius.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~sylius~dev.json from cache
Downloading https://repo.packagist.org/p2/sylius/sylius~dev.json if modified
[304] https://repo.packagist.org/p2/sylius/sylius.json
[304] https://repo.packagist.org/p2/sylius/sylius~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~orm-pack.json from cache
Downloading https://repo.packagist.org/p2/symfony/orm-pack.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~orm-pack~dev.json from cache
Downloading https://repo.packagist.org/p2/symfony/orm-pack~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/orm-pack.json
[304] https://repo.packagist.org/p2/symfony/orm-pack~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~rest-bundle.json from cache
Downloading https://repo.packagist.org/p2/friendsofsymfony/rest-bundle.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~rest-bundle~dev.json from cache
Downloading https://repo.packagist.org/p2/friendsofsymfony/rest-bundle~dev.json if modified
[304] https://repo.packagist.org/p2/friendsofsymfony/rest-bundle.json
[304] https://repo.packagist.org/p2/friendsofsymfony/rest-bundle~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-liip~functional-test-bundle.json from cache
Downloading https://repo.packagist.org/p2/liip/functional-test-bundle.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-liip~functional-test-bundle~dev.json from cache
Downloading https://repo.packagist.org/p2/liip/functional-test-bundle~dev.json if modified
[304] https://repo.packagist.org/p2/liip/functional-test-bundle.json
[304] https://repo.packagist.org/p2/liip/functional-test-bundle~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~profiler-pack.json from cache
Downloading https://repo.packagist.org/p2/symfony/profiler-pack.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~profiler-pack~dev.json from cache
Downloading https://repo.packagist.org/p2/symfony/profiler-pack~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/profiler-pack.json
[304] https://repo.packagist.org/p2/symfony/profiler-pack~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~test-pack.json from cache
Downloading https://repo.packagist.org/p2/symfony/test-pack.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~test-pack~dev.json from cache
Downloading https://repo.packagist.org/p2/symfony/test-pack~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/test-pack.json
[304] https://repo.packagist.org/p2/symfony/test-pack~dev.json
./composer.json has been updated
Reading ./composer.json
Loading config file /home/roboter/.config/composer/auth.json
Loading config file ./composer.json
Executing command (/home/roboter/PhpstormProjects/dbmm-backend): git branch -a --no-color --no-abbrev -v
Executing command (/home/roboter/PhpstormProjects/dbmm-backend): git rev-list master..test
Executing command (/home/roboter/PhpstormProjects/dbmm-backend): git rev-list develop..test
Reading /home/roboter/.config/composer/composer.json
Loading config file /home/roboter/.config/composer/auth.json
Loading config file /home/roboter/.config/composer/composer.json
Loading config file /home/roboter/.config/composer/auth.json
Reading /home/roboter/.config/composer/auth.json
Reading /home/roboter/PhpstormProjects/dbmm-backend/vendor/composer/installed.json
Reading /home/roboter/.config/composer/vendor/composer/installed.json
Loading plugin PackageVersions\Installer_composer_tmp0
Loading plugin Symfony\Flex\Flex_composer_tmp1
Running composer update sylius/sylius symfony/orm-pack friendsofsymfony/rest-bundle liip/functional-test-bundle symfony/profiler-pack symfony/test-pack --with-dependencies
Reading ./composer.lock
> pre-update-cmd: Symfony\Flex\Flex_composer_tmp1->configureInstaller
Loading composer repositories with package information
Updating dependencies
Downloading https://repo.packagist.org/packages.json
[200] https://repo.packagist.org/packages.json
Writing /home/roboter/.cache/composer/repo/https---repo.packagist.org/packages.json into cache
Downloading https://repo.packagist.org/p2/php-http/client-implementation.json
Downloading https://repo.packagist.org/p2/psr/http-message-implementation.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~rest-bundle.json from cache
Downloading https://repo.packagist.org/p2/friendsofsymfony/rest-bundle.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-liip~functional-test-bundle.json from cache
Downloading https://repo.packagist.org/p2/liip/functional-test-bundle.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~sylius.json from cache
Downloading https://repo.packagist.org/p2/sylius/sylius.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~orm-pack.json from cache
Downloading https://repo.packagist.org/p2/symfony/orm-pack.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~profiler-pack.json from cache
Downloading https://repo.packagist.org/p2/symfony/profiler-pack.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~test-pack.json from cache
Downloading https://repo.packagist.org/p2/symfony/test-pack.json if modified
Downloading https://repo.packagist.org/p2/php-http/client-implementation~dev.json
Downloading https://repo.packagist.org/p2/psr/http-message-implementation~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~rest-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-liip~functional-test-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~sylius~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~orm-pack~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~profiler-pack~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~test-pack~dev.json from cache
[404] https://repo.packagist.org/p2/php-http/client-implementation.json
[404] https://repo.packagist.org/p2/psr/http-message-implementation.json
[304] https://repo.packagist.org/p2/friendsofsymfony/rest-bundle.json
[304] https://repo.packagist.org/p2/liip/functional-test-bundle.json
[304] https://repo.packagist.org/p2/sylius/sylius.json
[404] https://repo.packagist.org/p2/php-http/client-implementation~dev.json
[404] https://repo.packagist.org/p2/psr/http-message-implementation~dev.json
Downloading https://repo.packagist.org/p2/friendsofsymfony/rest-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/liip/functional-test-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/sylius~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/orm-pack~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/profiler-pack~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/test-pack~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/orm-pack.json
[304] https://repo.packagist.org/p2/symfony/profiler-pack.json
[304] https://repo.packagist.org/p2/symfony/test-pack.json
[304] https://repo.packagist.org/p2/friendsofsymfony/rest-bundle~dev.json
[304] https://repo.packagist.org/p2/liip/functional-test-bundle~dev.json
[304] https://repo.packagist.org/p2/sylius/sylius~dev.json
[304] https://repo.packagist.org/p2/symfony/orm-pack~dev.json
[304] https://repo.packagist.org/p2/symfony/profiler-pack~dev.json
[304] https://repo.packagist.org/p2/symfony/test-pack~dev.json
Dependency "symfony/framework-bundle" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "phpunit/phpunit" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "jms/serializer-bundle" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "lexik/jwt-authentication-bundle" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/console" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/expression-language" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/form" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/monolog-bundle" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/security-bundle" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/translation" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/twig-bundle" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/validator" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/yaml" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/phpunit-bridge" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~log.json from cache
Downloading https://repo.packagist.org/p2/psr/log.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~config.json from cache
Downloading https://repo.packagist.org/p2/symfony/config.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~dependency-injection.json from cache
Downloading https://repo.packagist.org/p2/symfony/dependency-injection.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher.json from cache
Downloading https://repo.packagist.org/p2/symfony/event-dispatcher.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-foundation.json from cache
Downloading https://repo.packagist.org/p2/symfony/http-foundation.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-kernel.json from cache
Downloading https://repo.packagist.org/p2/symfony/http-kernel.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core.json from cache
Downloading https://repo.packagist.org/p2/symfony/security-core.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~negotiation.json from cache
Downloading https://repo.packagist.org/p2/willdurand/negotiation.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~jsonp-callback-validator.json from cache
Downloading https://repo.packagist.org/p2/willdurand/jsonp-callback-validator.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~debug.json from cache
Downloading https://repo.packagist.org/p2/symfony/debug.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~inflector.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~annotations.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~browser-kit.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-api-platform~core.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-babdev~pagerfanta-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-behat~transliterator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~collections.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~doctrine-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~doctrine-migrations-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~migrations.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~orm.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-egulias~email-validator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-fakerphp~faker.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofphp~proxy-manager-lts.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-gedmo~doctrine-extensions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~gaufrette.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-gaufrette-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-menu.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-menu-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-stdlib.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-liip~imagine-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~payum.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~payum-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~guzzle6-adapter.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-polishsymfonycommunity~symfony-mocker-container.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ramsey~uuid.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~block-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~association-hydrator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~doctrine-migrations-extra-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-event-dispatcher.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-framework-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-security.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~fixtures-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~grid.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~grid-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~mailer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~mailer-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~registry.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~resource.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~resource-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~theme-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~asset.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~doctrine-bridge.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~filesystem.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~finder.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~intl.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~messenger.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~options-resolver.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-icu.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php80.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~process.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-access.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-info.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~proxy-manager-bridge.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~routing.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-csrf.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-guard.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-http.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~serializer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~string.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~swiftmailer-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~templating.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~thanks.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~intl-extra.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~twig.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-webmozart~assert.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~hateoas.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~hateoas-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-winzou~state-machine-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~oauth-server-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~admin-api-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-stdlib.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-hydrator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-composer~package-versions-deprecated.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~stopwatch.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~web-profiler-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~css-selector.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~panther.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~log~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~config~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~dependency-injection~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-foundation~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-kernel~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~negotiation~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~jsonp-callback-validator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~debug~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~inflector~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~annotations~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~browser-kit~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-api-platform~core~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-babdev~pagerfanta-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-behat~transliterator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~collections~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~doctrine-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~doctrine-migrations-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~migrations~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~orm~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-egulias~email-validator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-fakerphp~faker~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofphp~proxy-manager-lts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-gedmo~doctrine-extensions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~gaufrette~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-gaufrette-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-menu~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-menu-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-stdlib~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-liip~imagine-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~payum~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~payum-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~guzzle6-adapter~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-polishsymfonycommunity~symfony-mocker-container~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ramsey~uuid~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~block-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~association-hydrator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~doctrine-migrations-extra-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-event-dispatcher~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-framework-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-security~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~fixtures-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~grid~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~grid-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~mailer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~mailer-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~registry~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~resource~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~resource-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~theme-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~asset~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~doctrine-bridge~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~filesystem~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~finder~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~intl~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~messenger~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~options-resolver~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-icu~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php80~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~process~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-access~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-info~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~proxy-manager-bridge~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~routing~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-csrf~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-guard~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-http~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~serializer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~string~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~swiftmailer-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~templating~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~thanks~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~intl-extra~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~twig~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-webmozart~assert~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~hateoas~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-willdurand~hateoas-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-winzou~state-machine-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~oauth-server-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~admin-api-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-stdlib~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-hydrator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-composer~package-versions-deprecated~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~stopwatch~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~web-profiler-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~css-selector~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~panther~dev.json from cache
[304] https://repo.packagist.org/p2/psr/log.json
[304] https://repo.packagist.org/p2/symfony/config.json
[304] https://repo.packagist.org/p2/symfony/dependency-injection.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher.json
[304] https://repo.packagist.org/p2/symfony/http-foundation.json
[304] https://repo.packagist.org/p2/symfony/http-kernel.json
[304] https://repo.packagist.org/p2/symfony/security-core.json
[304] https://repo.packagist.org/p2/willdurand/negotiation.json
[304] https://repo.packagist.org/p2/willdurand/jsonp-callback-validator.json
[304] https://repo.packagist.org/p2/symfony/debug.json
Downloading https://repo.packagist.org/p2/doctrine/inflector.json if modified
Downloading https://repo.packagist.org/p2/doctrine/annotations.json if modified
Downloading https://repo.packagist.org/p2/symfony/browser-kit.json if modified
Downloading https://repo.packagist.org/p2/api-platform/core.json if modified
Downloading https://repo.packagist.org/p2/babdev/pagerfanta-bundle.json if modified
Downloading https://repo.packagist.org/p2/behat/transliterator.json if modified
Downloading https://repo.packagist.org/p2/doctrine/collections.json if modified
Downloading https://repo.packagist.org/p2/doctrine/doctrine-bundle.json if modified
Downloading https://repo.packagist.org/p2/doctrine/doctrine-migrations-bundle.json if modified
Downloading https://repo.packagist.org/p2/doctrine/migrations.json if modified
[304] https://repo.packagist.org/p2/doctrine/inflector.json
[304] https://repo.packagist.org/p2/doctrine/annotations.json
[304] https://repo.packagist.org/p2/symfony/browser-kit.json
[304] https://repo.packagist.org/p2/api-platform/core.json
[304] https://repo.packagist.org/p2/babdev/pagerfanta-bundle.json
[304] https://repo.packagist.org/p2/behat/transliterator.json
[304] https://repo.packagist.org/p2/doctrine/collections.json
[304] https://repo.packagist.org/p2/doctrine/doctrine-bundle.json
[304] https://repo.packagist.org/p2/doctrine/doctrine-migrations-bundle.json
[304] https://repo.packagist.org/p2/doctrine/migrations.json
Downloading https://repo.packagist.org/p2/doctrine/orm.json if modified
Downloading https://repo.packagist.org/p2/egulias/email-validator.json if modified
Downloading https://repo.packagist.org/p2/fakerphp/faker.json if modified
Downloading https://repo.packagist.org/p2/friendsofphp/proxy-manager-lts.json if modified
Downloading https://repo.packagist.org/p2/gedmo/doctrine-extensions.json if modified
Downloading https://repo.packagist.org/p2/knplabs/gaufrette.json if modified
Downloading https://repo.packagist.org/p2/knplabs/knp-gaufrette-bundle.json if modified
Downloading https://repo.packagist.org/p2/knplabs/knp-menu.json if modified
Downloading https://repo.packagist.org/p2/knplabs/knp-menu-bundle.json if modified
Downloading https://repo.packagist.org/p2/laminas/laminas-stdlib.json if modified
[304] https://repo.packagist.org/p2/doctrine/orm.json
[304] https://repo.packagist.org/p2/egulias/email-validator.json
[304] https://repo.packagist.org/p2/fakerphp/faker.json
[304] https://repo.packagist.org/p2/friendsofphp/proxy-manager-lts.json
[304] https://repo.packagist.org/p2/gedmo/doctrine-extensions.json
[304] https://repo.packagist.org/p2/knplabs/gaufrette.json
[304] https://repo.packagist.org/p2/knplabs/knp-gaufrette-bundle.json
[304] https://repo.packagist.org/p2/knplabs/knp-menu.json
[304] https://repo.packagist.org/p2/knplabs/knp-menu-bundle.json
[304] https://repo.packagist.org/p2/laminas/laminas-stdlib.json
Downloading https://repo.packagist.org/p2/liip/imagine-bundle.json if modified
Downloading https://repo.packagist.org/p2/payum/payum.json if modified
Downloading https://repo.packagist.org/p2/payum/payum-bundle.json if modified
Downloading https://repo.packagist.org/p2/php-http/guzzle6-adapter.json if modified
Downloading https://repo.packagist.org/p2/polishsymfonycommunity/symfony-mocker-container.json if modified
Downloading https://repo.packagist.org/p2/ramsey/uuid.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/block-bundle.json if modified
Downloading https://repo.packagist.org/p2/swiftmailer/swiftmailer.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/association-hydrator.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/doctrine-migrations-extra-bundle.json if modified
[304] https://repo.packagist.org/p2/liip/imagine-bundle.json
[304] https://repo.packagist.org/p2/payum/payum.json
[304] https://repo.packagist.org/p2/payum/payum-bundle.json
[304] https://repo.packagist.org/p2/php-http/guzzle6-adapter.json
[304] https://repo.packagist.org/p2/polishsymfonycommunity/symfony-mocker-container.json
[304] https://repo.packagist.org/p2/ramsey/uuid.json
[304] https://repo.packagist.org/p2/sonata-project/block-bundle.json
[304] https://repo.packagist.org/p2/swiftmailer/swiftmailer.json
[304] https://repo.packagist.org/p2/sylius-labs/association-hydrator.json
[304] https://repo.packagist.org/p2/sylius-labs/doctrine-migrations-extra-bundle.json
Downloading https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-event-dispatcher.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-framework-bundle.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-security.json if modified
Downloading https://repo.packagist.org/p2/sylius/fixtures-bundle.json if modified
Downloading https://repo.packagist.org/p2/sylius/grid.json if modified
Downloading https://repo.packagist.org/p2/sylius/grid-bundle.json if modified
Downloading https://repo.packagist.org/p2/sylius/mailer.json if modified
Downloading https://repo.packagist.org/p2/sylius/mailer-bundle.json if modified
Downloading https://repo.packagist.org/p2/sylius/registry.json if modified
Downloading https://repo.packagist.org/p2/sylius/resource.json if modified
[304] https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-event-dispatcher.json
[304] https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-framework-bundle.json
[304] https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-security.json
[304] https://repo.packagist.org/p2/sylius/fixtures-bundle.json
[304] https://repo.packagist.org/p2/sylius/grid.json
[304] https://repo.packagist.org/p2/sylius/grid-bundle.json
[304] https://repo.packagist.org/p2/sylius/mailer.json
[304] https://repo.packagist.org/p2/sylius/mailer-bundle.json
[304] https://repo.packagist.org/p2/sylius/registry.json
[304] https://repo.packagist.org/p2/sylius/resource.json
Downloading https://repo.packagist.org/p2/sylius/resource-bundle.json if modified
Downloading https://repo.packagist.org/p2/sylius/theme-bundle.json if modified
Downloading https://repo.packagist.org/p2/symfony/asset.json if modified
Downloading https://repo.packagist.org/p2/symfony/doctrine-bridge.json if modified
Downloading https://repo.packagist.org/p2/symfony/filesystem.json if modified
Downloading https://repo.packagist.org/p2/symfony/finder.json if modified
Downloading https://repo.packagist.org/p2/symfony/intl.json if modified
Downloading https://repo.packagist.org/p2/symfony/messenger.json if modified
Downloading https://repo.packagist.org/p2/symfony/options-resolver.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-icu.json if modified
[304] https://repo.packagist.org/p2/sylius/resource-bundle.json
[304] https://repo.packagist.org/p2/sylius/theme-bundle.json
[304] https://repo.packagist.org/p2/symfony/asset.json
[304] https://repo.packagist.org/p2/symfony/doctrine-bridge.json
[304] https://repo.packagist.org/p2/symfony/filesystem.json
[304] https://repo.packagist.org/p2/symfony/finder.json
[304] https://repo.packagist.org/p2/symfony/intl.json
[304] https://repo.packagist.org/p2/symfony/messenger.json
[304] https://repo.packagist.org/p2/symfony/options-resolver.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-icu.json
Downloading https://repo.packagist.org/p2/symfony/polyfill-php80.json if modified
Downloading https://repo.packagist.org/p2/symfony/process.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-access.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-info.json if modified
Downloading https://repo.packagist.org/p2/symfony/proxy-manager-bridge.json if modified
Downloading https://repo.packagist.org/p2/symfony/routing.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-csrf.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-guard.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-http.json if modified
Downloading https://repo.packagist.org/p2/symfony/serializer.json if modified
[304] https://repo.packagist.org/p2/symfony/polyfill-php80.json
[304] https://repo.packagist.org/p2/symfony/process.json
[304] https://repo.packagist.org/p2/symfony/property-access.json
[304] https://repo.packagist.org/p2/symfony/property-info.json
[304] https://repo.packagist.org/p2/symfony/proxy-manager-bridge.json
[304] https://repo.packagist.org/p2/symfony/routing.json
[304] https://repo.packagist.org/p2/symfony/security-csrf.json
[304] https://repo.packagist.org/p2/symfony/security-guard.json
[304] https://repo.packagist.org/p2/symfony/security-http.json
[304] https://repo.packagist.org/p2/symfony/serializer.json
Downloading https://repo.packagist.org/p2/symfony/string.json if modified
Downloading https://repo.packagist.org/p2/symfony/swiftmailer-bundle.json if modified
Downloading https://repo.packagist.org/p2/symfony/templating.json if modified
Downloading https://repo.packagist.org/p2/symfony/thanks.json if modified
Downloading https://repo.packagist.org/p2/twig/intl-extra.json if modified
Downloading https://repo.packagist.org/p2/twig/twig.json if modified
Downloading https://repo.packagist.org/p2/webmozart/assert.json if modified
Downloading https://repo.packagist.org/p2/willdurand/hateoas.json if modified
Downloading https://repo.packagist.org/p2/willdurand/hateoas-bundle.json if modified
Downloading https://repo.packagist.org/p2/winzou/state-machine-bundle.json if modified
[304] https://repo.packagist.org/p2/symfony/string.json
[304] https://repo.packagist.org/p2/symfony/swiftmailer-bundle.json
[304] https://repo.packagist.org/p2/symfony/templating.json
[304] https://repo.packagist.org/p2/symfony/thanks.json
[304] https://repo.packagist.org/p2/twig/intl-extra.json
[304] https://repo.packagist.org/p2/twig/twig.json
[304] https://repo.packagist.org/p2/webmozart/assert.json
[304] https://repo.packagist.org/p2/willdurand/hateoas.json
[304] https://repo.packagist.org/p2/willdurand/hateoas-bundle.json
[304] https://repo.packagist.org/p2/winzou/state-machine-bundle.json
Downloading https://repo.packagist.org/p2/friendsofsymfony/oauth-server-bundle.json if modified
Downloading https://repo.packagist.org/p2/sylius/admin-api-bundle.json if modified
Downloading https://repo.packagist.org/p2/zendframework/zend-stdlib.json if modified
Downloading https://repo.packagist.org/p2/zendframework/zend-hydrator.json if modified
Downloading https://repo.packagist.org/p2/composer/package-versions-deprecated.json if modified
Downloading https://repo.packagist.org/p2/symfony/stopwatch.json if modified
Downloading https://repo.packagist.org/p2/symfony/web-profiler-bundle.json if modified
Downloading https://repo.packagist.org/p2/symfony/css-selector.json if modified
Downloading https://repo.packagist.org/p2/symfony/panther.json if modified
Downloading https://repo.packagist.org/p2/psr/log~dev.json if modified
[304] https://repo.packagist.org/p2/friendsofsymfony/oauth-server-bundle.json
[304] https://repo.packagist.org/p2/sylius/admin-api-bundle.json
[304] https://repo.packagist.org/p2/zendframework/zend-stdlib.json
[304] https://repo.packagist.org/p2/zendframework/zend-hydrator.json
[304] https://repo.packagist.org/p2/composer/package-versions-deprecated.json
[304] https://repo.packagist.org/p2/symfony/stopwatch.json
[304] https://repo.packagist.org/p2/symfony/web-profiler-bundle.json
[304] https://repo.packagist.org/p2/symfony/css-selector.json
[304] https://repo.packagist.org/p2/symfony/panther.json
[304] https://repo.packagist.org/p2/psr/log~dev.json
Downloading https://repo.packagist.org/p2/symfony/config~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/dependency-injection~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/event-dispatcher~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/http-foundation~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/http-kernel~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-core~dev.json if modified
Downloading https://repo.packagist.org/p2/willdurand/negotiation~dev.json if modified
Downloading https://repo.packagist.org/p2/willdurand/jsonp-callback-validator~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/debug~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/inflector~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/config~dev.json
[304] https://repo.packagist.org/p2/symfony/dependency-injection~dev.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher~dev.json
[304] https://repo.packagist.org/p2/symfony/http-foundation~dev.json
[304] https://repo.packagist.org/p2/symfony/http-kernel~dev.json
[304] https://repo.packagist.org/p2/symfony/security-core~dev.json
[304] https://repo.packagist.org/p2/willdurand/negotiation~dev.json
[304] https://repo.packagist.org/p2/willdurand/jsonp-callback-validator~dev.json
[304] https://repo.packagist.org/p2/symfony/debug~dev.json
[304] https://repo.packagist.org/p2/doctrine/inflector~dev.json
Downloading https://repo.packagist.org/p2/doctrine/annotations~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/browser-kit~dev.json if modified
Downloading https://repo.packagist.org/p2/api-platform/core~dev.json if modified
Downloading https://repo.packagist.org/p2/babdev/pagerfanta-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/behat/transliterator~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/collections~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/doctrine-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/doctrine-migrations-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/migrations~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/orm~dev.json if modified
[304] https://repo.packagist.org/p2/doctrine/annotations~dev.json
[304] https://repo.packagist.org/p2/symfony/browser-kit~dev.json
[304] https://repo.packagist.org/p2/api-platform/core~dev.json
[304] https://repo.packagist.org/p2/babdev/pagerfanta-bundle~dev.json
[304] https://repo.packagist.org/p2/behat/transliterator~dev.json
[304] https://repo.packagist.org/p2/doctrine/collections~dev.json
[304] https://repo.packagist.org/p2/doctrine/doctrine-bundle~dev.json
[304] https://repo.packagist.org/p2/doctrine/doctrine-migrations-bundle~dev.json
[304] https://repo.packagist.org/p2/doctrine/migrations~dev.json
[304] https://repo.packagist.org/p2/doctrine/orm~dev.json
Downloading https://repo.packagist.org/p2/egulias/email-validator~dev.json if modified
Downloading https://repo.packagist.org/p2/fakerphp/faker~dev.json if modified
Downloading https://repo.packagist.org/p2/friendsofphp/proxy-manager-lts~dev.json if modified
Downloading https://repo.packagist.org/p2/gedmo/doctrine-extensions~dev.json if modified
Downloading https://repo.packagist.org/p2/knplabs/gaufrette~dev.json if modified
Downloading https://repo.packagist.org/p2/knplabs/knp-gaufrette-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/knplabs/knp-menu~dev.json if modified
Downloading https://repo.packagist.org/p2/knplabs/knp-menu-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/laminas/laminas-stdlib~dev.json if modified
Downloading https://repo.packagist.org/p2/liip/imagine-bundle~dev.json if modified
[304] https://repo.packagist.org/p2/egulias/email-validator~dev.json
[304] https://repo.packagist.org/p2/fakerphp/faker~dev.json
[304] https://repo.packagist.org/p2/friendsofphp/proxy-manager-lts~dev.json
[304] https://repo.packagist.org/p2/gedmo/doctrine-extensions~dev.json
[304] https://repo.packagist.org/p2/knplabs/gaufrette~dev.json
[304] https://repo.packagist.org/p2/knplabs/knp-gaufrette-bundle~dev.json
[304] https://repo.packagist.org/p2/knplabs/knp-menu~dev.json
[304] https://repo.packagist.org/p2/knplabs/knp-menu-bundle~dev.json
[304] https://repo.packagist.org/p2/laminas/laminas-stdlib~dev.json
[304] https://repo.packagist.org/p2/liip/imagine-bundle~dev.json
Downloading https://repo.packagist.org/p2/payum/payum~dev.json if modified
Downloading https://repo.packagist.org/p2/payum/payum-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/php-http/guzzle6-adapter~dev.json if modified
Downloading https://repo.packagist.org/p2/polishsymfonycommunity/symfony-mocker-container~dev.json if modified
Downloading https://repo.packagist.org/p2/ramsey/uuid~dev.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/block-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/swiftmailer/swiftmailer~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/association-hydrator~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/doctrine-migrations-extra-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-event-dispatcher~dev.json if modified
[304] https://repo.packagist.org/p2/payum/payum~dev.json
[304] https://repo.packagist.org/p2/payum/payum-bundle~dev.json
[304] https://repo.packagist.org/p2/php-http/guzzle6-adapter~dev.json
[304] https://repo.packagist.org/p2/polishsymfonycommunity/symfony-mocker-container~dev.json
[304] https://repo.packagist.org/p2/ramsey/uuid~dev.json
[304] https://repo.packagist.org/p2/sonata-project/block-bundle~dev.json
[304] https://repo.packagist.org/p2/swiftmailer/swiftmailer~dev.json
[304] https://repo.packagist.org/p2/sylius-labs/association-hydrator~dev.json
[304] https://repo.packagist.org/p2/sylius-labs/doctrine-migrations-extra-bundle~dev.json
[304] https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-event-dispatcher~dev.json
Downloading https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-framework-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-security~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/fixtures-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/grid~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/grid-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/mailer~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/mailer-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/registry~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/resource~dev.json if modified
Downloading https://repo.packagist.org/p2/sylius/resource-bundle~dev.json if modified
[304] https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-framework-bundle~dev.json
[304] https://repo.packagist.org/p2/sylius-labs/polyfill-symfony-security~dev.json
[304] https://repo.packagist.org/p2/sylius/fixtures-bundle~dev.json
[304] https://repo.packagist.org/p2/sylius/grid~dev.json
[304] https://repo.packagist.org/p2/sylius/grid-bundle~dev.json
[304] https://repo.packagist.org/p2/sylius/mailer~dev.json
[304] https://repo.packagist.org/p2/sylius/mailer-bundle~dev.json
[304] https://repo.packagist.org/p2/sylius/registry~dev.json
[304] https://repo.packagist.org/p2/sylius/resource~dev.json
[304] https://repo.packagist.org/p2/sylius/resource-bundle~dev.json
Downloading https://repo.packagist.org/p2/sylius/theme-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/asset~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/doctrine-bridge~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/filesystem~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/finder~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/intl~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/messenger~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/options-resolver~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-icu~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-php80~dev.json if modified
[304] https://repo.packagist.org/p2/sylius/theme-bundle~dev.json
[304] https://repo.packagist.org/p2/symfony/asset~dev.json
[304] https://repo.packagist.org/p2/symfony/doctrine-bridge~dev.json
[304] https://repo.packagist.org/p2/symfony/filesystem~dev.json
[304] https://repo.packagist.org/p2/symfony/finder~dev.json
[304] https://repo.packagist.org/p2/symfony/intl~dev.json
[304] https://repo.packagist.org/p2/symfony/messenger~dev.json
[304] https://repo.packagist.org/p2/symfony/options-resolver~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-icu~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php80~dev.json
Downloading https://repo.packagist.org/p2/symfony/process~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-access~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-info~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/proxy-manager-bridge~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/routing~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-csrf~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-guard~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-http~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/serializer~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/string~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/process~dev.json
[304] https://repo.packagist.org/p2/symfony/property-access~dev.json
[304] https://repo.packagist.org/p2/symfony/property-info~dev.json
[304] https://repo.packagist.org/p2/symfony/proxy-manager-bridge~dev.json
[304] https://repo.packagist.org/p2/symfony/routing~dev.json
[304] https://repo.packagist.org/p2/symfony/security-csrf~dev.json
[304] https://repo.packagist.org/p2/symfony/security-guard~dev.json
[304] https://repo.packagist.org/p2/symfony/security-http~dev.json
[304] https://repo.packagist.org/p2/symfony/serializer~dev.json
[304] https://repo.packagist.org/p2/symfony/string~dev.json
Downloading https://repo.packagist.org/p2/symfony/swiftmailer-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/templating~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/thanks~dev.json if modified
Downloading https://repo.packagist.org/p2/twig/intl-extra~dev.json if modified
Downloading https://repo.packagist.org/p2/twig/twig~dev.json if modified
Downloading https://repo.packagist.org/p2/webmozart/assert~dev.json if modified
Downloading https://repo.packagist.org/p2/willdurand/hateoas~dev.json if modified
Downloading https://repo.packagist.org/p2/willdurand/hateoas-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/winzou/state-machine-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/friendsofsymfony/oauth-server-bundle~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/swiftmailer-bundle~dev.json
[304] https://repo.packagist.org/p2/symfony/templating~dev.json
[304] https://repo.packagist.org/p2/symfony/thanks~dev.json
[304] https://repo.packagist.org/p2/twig/intl-extra~dev.json
[304] https://repo.packagist.org/p2/twig/twig~dev.json
[304] https://repo.packagist.org/p2/webmozart/assert~dev.json
[304] https://repo.packagist.org/p2/willdurand/hateoas~dev.json
[304] https://repo.packagist.org/p2/willdurand/hateoas-bundle~dev.json
[304] https://repo.packagist.org/p2/winzou/state-machine-bundle~dev.json
[304] https://repo.packagist.org/p2/friendsofsymfony/oauth-server-bundle~dev.json
Downloading https://repo.packagist.org/p2/sylius/admin-api-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/zendframework/zend-stdlib~dev.json if modified
Downloading https://repo.packagist.org/p2/zendframework/zend-hydrator~dev.json if modified
Downloading https://repo.packagist.org/p2/composer/package-versions-deprecated~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/stopwatch~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/web-profiler-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/css-selector~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/panther~dev.json if modified
[304] https://repo.packagist.org/p2/sylius/admin-api-bundle~dev.json
[304] https://repo.packagist.org/p2/zendframework/zend-stdlib~dev.json
[304] https://repo.packagist.org/p2/zendframework/zend-hydrator~dev.json
[304] https://repo.packagist.org/p2/composer/package-versions-deprecated~dev.json
[304] https://repo.packagist.org/p2/symfony/stopwatch~dev.json
[304] https://repo.packagist.org/p2/symfony/web-profiler-bundle~dev.json
[304] https://repo.packagist.org/p2/symfony/css-selector~dev.json
[304] https://repo.packagist.org/p2/symfony/panther~dev.json
Dependency "symfony/http-client" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~deprecation-contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/deprecation-contracts.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~filesystem.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php80.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php81.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-php81.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~container.json from cache
Downloading https://repo.packagist.org/p2/psr/container.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~service-contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/service-contracts.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher-contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/event-dispatcher-contracts.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~mime.json from cache
Downloading https://repo.packagist.org/p2/symfony/mime.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~error-handler.json from cache
Downloading https://repo.packagist.org/p2/symfony/error-handler.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-client-contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/http-client-contracts.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~password-hasher.json from cache
Downloading https://repo.packagist.org/p2/symfony/password-hasher.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/contracts.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~lexer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~cache.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~dom-crawler.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-fig~link-util.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-access.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-info.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~serializer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~web-link.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-foundation.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-kernel.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-pagerfanta~pagerfanta.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~config.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~dependency-injection.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~routing.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~cache.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~dbal.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~persistence.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~sql-formatter.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~cache.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~doctrine-bridge.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jdorn~sql-formatter.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~doctrine-cache-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~migrations.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~symfony.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~event-manager.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ocramius~package-versions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ocramius~proxy-manager.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~collections.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~common.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~deprecations.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~instantiator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-idn.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-code.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-behat~transliterator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~annotations.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~gaufrette.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-menu.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-zendframework-bridge.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-imagine~imagine.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~finder.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~options-resolver.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~process.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~twig.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~templating.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~asset.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-alcohol~iso4217.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~iso4217.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~message.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-components.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~core.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-csrf.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~httplug.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~http-client.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-guzzlehttp~guzzle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-mockery~mockery.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~cache.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~doctrine-extensions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~form-extensions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~twig-extensions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-egulias~email-validator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-marcj~topsort.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~data-fixtures.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-monolog~monolog.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~monolog-bridge.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-webmozart~assert.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-event-dispatcher.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-gedmo~doctrine-extensions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-pagerfanta~core.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-winzou~state-machine.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~registry.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-winzou~state-machine-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-babdev~pagerfanta-bundle.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~translation-contracts.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-icu.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~amqp-messenger.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~doctrine-messenger.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~redis-messenger.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~intl.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~inflector.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~string.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-http.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-grapheme.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-normalizer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jms~serializer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jms~metadata.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~oauth2-php.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-stdlib.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~var-dumper.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~twig-bridge.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-webdriver~webdriver.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-facebook~webdriver.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~reflection.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~deprecation-contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~filesystem~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php80~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php81~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~container~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~service-contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher-contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~mime~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~error-handler~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-client-contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~password-hasher~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~lexer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~cache~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~dom-crawler~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-fig~link-util~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-access~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-info~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~serializer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~web-link~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-foundation~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-kernel~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-pagerfanta~pagerfanta~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~config~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~dependency-injection~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~routing~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~cache~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~dbal~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~persistence~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~sql-formatter~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~cache~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~doctrine-bridge~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jdorn~sql-formatter~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~doctrine-cache-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~migrations~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~symfony~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~event-manager~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ocramius~package-versions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ocramius~proxy-manager~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~collections~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~common~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~deprecations~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~instantiator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-idn~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-code~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-behat~transliterator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~annotations~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~gaufrette~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-knplabs~knp-menu~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-zendframework-bridge~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-imagine~imagine~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~finder~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~options-resolver~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~process~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~twig~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~templating~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~asset~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-alcohol~iso4217~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~iso4217~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~message~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-components~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-payum~core~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-csrf~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~httplug~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~http-client~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-guzzlehttp~guzzle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-mockery~mockery~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~cache~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~doctrine-extensions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~form-extensions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sonata-project~twig-extensions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-egulias~email-validator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-marcj~topsort~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~data-fixtures~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-monolog~monolog~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~monolog-bridge~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-webmozart~assert~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius-labs~polyfill-symfony-event-dispatcher~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-gedmo~doctrine-extensions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-pagerfanta~core~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-winzou~state-machine~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sylius~registry~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-winzou~state-machine-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-babdev~pagerfanta-bundle~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~translation-contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-icu~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~amqp-messenger~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~doctrine-messenger~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~redis-messenger~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~intl~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~inflector~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~string~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-http~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-grapheme~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-normalizer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jms~serializer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jms~metadata~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-friendsofsymfony~oauth2-php~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-stdlib~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~var-dumper~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~twig-bridge~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-webdriver~webdriver~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-facebook~webdriver~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-doctrine~reflection~dev.json from cache
[304] https://repo.packagist.org/p2/symfony/deprecation-contracts.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php81.json
[304] https://repo.packagist.org/p2/psr/container.json
[304] https://repo.packagist.org/p2/symfony/service-contracts.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher-contracts.json
[304] https://repo.packagist.org/p2/symfony/mime.json
[304] https://repo.packagist.org/p2/symfony/error-handler.json
[304] https://repo.packagist.org/p2/symfony/http-client-contracts.json
[304] https://repo.packagist.org/p2/symfony/password-hasher.json
[304] https://repo.packagist.org/p2/symfony/contracts.json
Downloading https://repo.packagist.org/p2/doctrine/lexer.json if modified
Downloading https://repo.packagist.org/p2/psr/cache.json if modified
Downloading https://repo.packagist.org/p2/symfony/dom-crawler.json if modified
Downloading https://repo.packagist.org/p2/fig/link-util.json if modified
Downloading https://repo.packagist.org/p2/symfony/web-link.json if modified
Downloading https://repo.packagist.org/p2/pagerfanta/pagerfanta.json if modified
Downloading https://repo.packagist.org/p2/doctrine/cache.json if modified
Downloading https://repo.packagist.org/p2/doctrine/dbal.json if modified
Downloading https://repo.packagist.org/p2/doctrine/persistence.json if modified
Downloading https://repo.packagist.org/p2/doctrine/sql-formatter.json if modified
[304] https://repo.packagist.org/p2/doctrine/lexer.json
[304] https://repo.packagist.org/p2/psr/cache.json
[304] https://repo.packagist.org/p2/symfony/dom-crawler.json
[304] https://repo.packagist.org/p2/fig/link-util.json
[304] https://repo.packagist.org/p2/symfony/web-link.json
[304] https://repo.packagist.org/p2/pagerfanta/pagerfanta.json
[304] https://repo.packagist.org/p2/doctrine/cache.json
[304] https://repo.packagist.org/p2/doctrine/dbal.json
[304] https://repo.packagist.org/p2/doctrine/persistence.json
[304] https://repo.packagist.org/p2/doctrine/sql-formatter.json
Downloading https://repo.packagist.org/p2/symfony/cache.json if modified
Downloading https://repo.packagist.org/p2/jdorn/sql-formatter.json if modified
Downloading https://repo.packagist.org/p2/doctrine/doctrine-cache-bundle.json if modified
Downloading https://repo.packagist.org/p2/symfony/symfony.json if modified
Downloading https://repo.packagist.org/p2/doctrine/event-manager.json if modified
Downloading https://repo.packagist.org/p2/ocramius/package-versions.json if modified
Downloading https://repo.packagist.org/p2/ocramius/proxy-manager.json if modified
Downloading https://repo.packagist.org/p2/doctrine/common.json if modified
Downloading https://repo.packagist.org/p2/doctrine/deprecations.json if modified
Downloading https://repo.packagist.org/p2/doctrine/instantiator.json if modified
[304] https://repo.packagist.org/p2/symfony/cache.json
[304] https://repo.packagist.org/p2/jdorn/sql-formatter.json
[304] https://repo.packagist.org/p2/doctrine/doctrine-cache-bundle.json
[304] https://repo.packagist.org/p2/symfony/symfony.json
[304] https://repo.packagist.org/p2/doctrine/event-manager.json
[304] https://repo.packagist.org/p2/ocramius/package-versions.json
[304] https://repo.packagist.org/p2/ocramius/proxy-manager.json
[304] https://repo.packagist.org/p2/doctrine/common.json
[304] https://repo.packagist.org/p2/doctrine/deprecations.json
[304] https://repo.packagist.org/p2/doctrine/instantiator.json
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-idn.json if modified
Downloading https://repo.packagist.org/p2/laminas/laminas-code.json if modified
Downloading https://repo.packagist.org/p2/laminas/laminas-zendframework-bridge.json if modified
Downloading https://repo.packagist.org/p2/imagine/imagine.json if modified
Downloading https://repo.packagist.org/p2/alcohol/iso4217.json if modified
Downloading https://repo.packagist.org/p2/payum/iso4217.json if modified
Downloading https://repo.packagist.org/p2/php-http/message.json if modified
Downloading https://repo.packagist.org/p2/league/uri.json if modified
Downloading https://repo.packagist.org/p2/league/uri-components.json if modified
Downloading https://repo.packagist.org/p2/payum/core.json if modified
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-idn.json
[304] https://repo.packagist.org/p2/laminas/laminas-code.json
[304] https://repo.packagist.org/p2/laminas/laminas-zendframework-bridge.json
[304] https://repo.packagist.org/p2/imagine/imagine.json
[304] https://repo.packagist.org/p2/alcohol/iso4217.json
[304] https://repo.packagist.org/p2/payum/iso4217.json
[304] https://repo.packagist.org/p2/php-http/message.json
[304] https://repo.packagist.org/p2/league/uri.json
[304] https://repo.packagist.org/p2/league/uri-components.json
[304] https://repo.packagist.org/p2/payum/core.json
Downloading https://repo.packagist.org/p2/php-http/httplug.json if modified
Downloading https://repo.packagist.org/p2/psr/http-client.json if modified
Downloading https://repo.packagist.org/p2/guzzlehttp/guzzle.json if modified
Downloading https://repo.packagist.org/p2/mockery/mockery.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/cache.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/doctrine-extensions.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/form-extensions.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/twig-extensions.json if modified
Downloading https://repo.packagist.org/p2/marcj/topsort.json if modified
Downloading https://repo.packagist.org/p2/doctrine/data-fixtures.json if modified
[304] https://repo.packagist.org/p2/php-http/httplug.json
[304] https://repo.packagist.org/p2/psr/http-client.json
[304] https://repo.packagist.org/p2/guzzlehttp/guzzle.json
[304] https://repo.packagist.org/p2/mockery/mockery.json
[304] https://repo.packagist.org/p2/sonata-project/cache.json
[304] https://repo.packagist.org/p2/sonata-project/doctrine-extensions.json
[304] https://repo.packagist.org/p2/sonata-project/form-extensions.json
[304] https://repo.packagist.org/p2/sonata-project/twig-extensions.json
[304] https://repo.packagist.org/p2/marcj/topsort.json
[304] https://repo.packagist.org/p2/doctrine/data-fixtures.json
Downloading https://repo.packagist.org/p2/monolog/monolog.json if modified
Downloading https://repo.packagist.org/p2/symfony/monolog-bridge.json if modified
Downloading https://repo.packagist.org/p2/pagerfanta/core.json if modified
Downloading https://repo.packagist.org/p2/winzou/state-machine.json if modified
Downloading https://repo.packagist.org/p2/symfony/translation-contracts.json if modified
Downloading https://repo.packagist.org/p2/symfony/amqp-messenger.json if modified
Downloading https://repo.packagist.org/p2/symfony/doctrine-messenger.json if modified
Downloading https://repo.packagist.org/p2/symfony/redis-messenger.json if modified
Downloading https://repo.packagist.org/p2/symfony/inflector.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme.json if modified
[304] https://repo.packagist.org/p2/monolog/monolog.json
[304] https://repo.packagist.org/p2/symfony/monolog-bridge.json
[304] https://repo.packagist.org/p2/pagerfanta/core.json
[304] https://repo.packagist.org/p2/winzou/state-machine.json
[304] https://repo.packagist.org/p2/symfony/translation-contracts.json
[304] https://repo.packagist.org/p2/symfony/amqp-messenger.json
[304] https://repo.packagist.org/p2/symfony/doctrine-messenger.json
[304] https://repo.packagist.org/p2/symfony/redis-messenger.json
[304] https://repo.packagist.org/p2/symfony/inflector.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme.json
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer.json if modified
Downloading https://repo.packagist.org/p2/jms/serializer.json if modified
Downloading https://repo.packagist.org/p2/jms/metadata.json if modified
Downloading https://repo.packagist.org/p2/friendsofsymfony/oauth2-php.json if modified
Downloading https://repo.packagist.org/p2/symfony/var-dumper.json if modified
Downloading https://repo.packagist.org/p2/symfony/twig-bridge.json if modified
Downloading https://repo.packagist.org/p2/php-webdriver/webdriver.json if modified
Downloading https://repo.packagist.org/p2/facebook/webdriver.json if modified
Downloading https://repo.packagist.org/p2/doctrine/reflection.json if modified
Downloading https://repo.packagist.org/p2/symfony/deprecation-contracts~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer.json
[304] https://repo.packagist.org/p2/jms/serializer.json
[304] https://repo.packagist.org/p2/jms/metadata.json
[304] https://repo.packagist.org/p2/friendsofsymfony/oauth2-php.json
[304] https://repo.packagist.org/p2/symfony/var-dumper.json
[304] https://repo.packagist.org/p2/symfony/twig-bridge.json
[304] https://repo.packagist.org/p2/php-webdriver/webdriver.json
[304] https://repo.packagist.org/p2/facebook/webdriver.json
[304] https://repo.packagist.org/p2/doctrine/reflection.json
[304] https://repo.packagist.org/p2/symfony/deprecation-contracts~dev.json
Downloading https://repo.packagist.org/p2/symfony/polyfill-php81~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/container~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/service-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/event-dispatcher-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/mime~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/error-handler~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/http-client-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/password-hasher~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/lexer~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/polyfill-php81~dev.json
[304] https://repo.packagist.org/p2/psr/container~dev.json
[304] https://repo.packagist.org/p2/symfony/service-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/mime~dev.json
[304] https://repo.packagist.org/p2/symfony/error-handler~dev.json
[304] https://repo.packagist.org/p2/symfony/http-client-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/password-hasher~dev.json
[304] https://repo.packagist.org/p2/symfony/contracts~dev.json
[304] https://repo.packagist.org/p2/doctrine/lexer~dev.json
Downloading https://repo.packagist.org/p2/psr/cache~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/dom-crawler~dev.json if modified
Downloading https://repo.packagist.org/p2/fig/link-util~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/web-link~dev.json if modified
Downloading https://repo.packagist.org/p2/pagerfanta/pagerfanta~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/cache~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/dbal~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/persistence~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/sql-formatter~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/cache~dev.json if modified
[304] https://repo.packagist.org/p2/psr/cache~dev.json
[304] https://repo.packagist.org/p2/symfony/dom-crawler~dev.json
[304] https://repo.packagist.org/p2/fig/link-util~dev.json
[304] https://repo.packagist.org/p2/symfony/web-link~dev.json
[304] https://repo.packagist.org/p2/pagerfanta/pagerfanta~dev.json
[304] https://repo.packagist.org/p2/doctrine/cache~dev.json
[304] https://repo.packagist.org/p2/doctrine/dbal~dev.json
[304] https://repo.packagist.org/p2/doctrine/persistence~dev.json
[304] https://repo.packagist.org/p2/doctrine/sql-formatter~dev.json
[304] https://repo.packagist.org/p2/symfony/cache~dev.json
Downloading https://repo.packagist.org/p2/jdorn/sql-formatter~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/doctrine-cache-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/symfony~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/event-manager~dev.json if modified
Downloading https://repo.packagist.org/p2/ocramius/package-versions~dev.json if modified
Downloading https://repo.packagist.org/p2/ocramius/proxy-manager~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/common~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/deprecations~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/instantiator~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-idn~dev.json if modified
[304] https://repo.packagist.org/p2/jdorn/sql-formatter~dev.json
[304] https://repo.packagist.org/p2/doctrine/doctrine-cache-bundle~dev.json
[304] https://repo.packagist.org/p2/symfony/symfony~dev.json
[304] https://repo.packagist.org/p2/doctrine/event-manager~dev.json
[304] https://repo.packagist.org/p2/ocramius/package-versions~dev.json
[304] https://repo.packagist.org/p2/ocramius/proxy-manager~dev.json
[304] https://repo.packagist.org/p2/doctrine/common~dev.json
[304] https://repo.packagist.org/p2/doctrine/deprecations~dev.json
[304] https://repo.packagist.org/p2/doctrine/instantiator~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-idn~dev.json
Downloading https://repo.packagist.org/p2/laminas/laminas-code~dev.json if modified
Downloading https://repo.packagist.org/p2/laminas/laminas-zendframework-bridge~dev.json if modified
Downloading https://repo.packagist.org/p2/imagine/imagine~dev.json if modified
Downloading https://repo.packagist.org/p2/alcohol/iso4217~dev.json if modified
Downloading https://repo.packagist.org/p2/payum/iso4217~dev.json if modified
Downloading https://repo.packagist.org/p2/php-http/message~dev.json if modified
Downloading https://repo.packagist.org/p2/league/uri~dev.json if modified
Downloading https://repo.packagist.org/p2/league/uri-components~dev.json if modified
Downloading https://repo.packagist.org/p2/payum/core~dev.json if modified
Downloading https://repo.packagist.org/p2/php-http/httplug~dev.json if modified
[304] https://repo.packagist.org/p2/laminas/laminas-code~dev.json
[304] https://repo.packagist.org/p2/laminas/laminas-zendframework-bridge~dev.json
[304] https://repo.packagist.org/p2/imagine/imagine~dev.json
[304] https://repo.packagist.org/p2/alcohol/iso4217~dev.json
[304] https://repo.packagist.org/p2/payum/iso4217~dev.json
[304] https://repo.packagist.org/p2/php-http/message~dev.json
[304] https://repo.packagist.org/p2/league/uri~dev.json
[304] https://repo.packagist.org/p2/league/uri-components~dev.json
[304] https://repo.packagist.org/p2/payum/core~dev.json
[304] https://repo.packagist.org/p2/php-http/httplug~dev.json
Downloading https://repo.packagist.org/p2/psr/http-client~dev.json if modified
Downloading https://repo.packagist.org/p2/guzzlehttp/guzzle~dev.json if modified
Downloading https://repo.packagist.org/p2/mockery/mockery~dev.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/cache~dev.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/doctrine-extensions~dev.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/form-extensions~dev.json if modified
Downloading https://repo.packagist.org/p2/sonata-project/twig-extensions~dev.json if modified
Downloading https://repo.packagist.org/p2/marcj/topsort~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/data-fixtures~dev.json if modified
Downloading https://repo.packagist.org/p2/monolog/monolog~dev.json if modified
[304] https://repo.packagist.org/p2/psr/http-client~dev.json
[304] https://repo.packagist.org/p2/guzzlehttp/guzzle~dev.json
[304] https://repo.packagist.org/p2/mockery/mockery~dev.json
[304] https://repo.packagist.org/p2/sonata-project/cache~dev.json
[304] https://repo.packagist.org/p2/sonata-project/doctrine-extensions~dev.json
[304] https://repo.packagist.org/p2/sonata-project/form-extensions~dev.json
[304] https://repo.packagist.org/p2/sonata-project/twig-extensions~dev.json
[304] https://repo.packagist.org/p2/marcj/topsort~dev.json
[304] https://repo.packagist.org/p2/doctrine/data-fixtures~dev.json
[304] https://repo.packagist.org/p2/monolog/monolog~dev.json
Downloading https://repo.packagist.org/p2/symfony/monolog-bridge~dev.json if modified
Downloading https://repo.packagist.org/p2/pagerfanta/core~dev.json if modified
Downloading https://repo.packagist.org/p2/winzou/state-machine~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/translation-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/amqp-messenger~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/doctrine-messenger~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/redis-messenger~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/inflector~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/monolog-bridge~dev.json
[304] https://repo.packagist.org/p2/pagerfanta/core~dev.json
[304] https://repo.packagist.org/p2/winzou/state-machine~dev.json
[304] https://repo.packagist.org/p2/symfony/translation-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/amqp-messenger~dev.json
[304] https://repo.packagist.org/p2/symfony/doctrine-messenger~dev.json
[304] https://repo.packagist.org/p2/symfony/redis-messenger~dev.json
[304] https://repo.packagist.org/p2/symfony/inflector~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer~dev.json
Downloading https://repo.packagist.org/p2/jms/serializer~dev.json if modified
Downloading https://repo.packagist.org/p2/jms/metadata~dev.json if modified
Downloading https://repo.packagist.org/p2/friendsofsymfony/oauth2-php~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/var-dumper~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/twig-bridge~dev.json if modified
Downloading https://repo.packagist.org/p2/php-webdriver/webdriver~dev.json if modified
Downloading https://repo.packagist.org/p2/facebook/webdriver~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/reflection~dev.json if modified
[304] https://repo.packagist.org/p2/jms/serializer~dev.json
[304] https://repo.packagist.org/p2/jms/metadata~dev.json
[304] https://repo.packagist.org/p2/friendsofsymfony/oauth2-php~dev.json
[304] https://repo.packagist.org/p2/symfony/var-dumper~dev.json
[304] https://repo.packagist.org/p2/symfony/twig-bridge~dev.json
[304] https://repo.packagist.org/p2/php-webdriver/webdriver~dev.json
[304] https://repo.packagist.org/p2/facebook/webdriver~dev.json
[304] https://repo.packagist.org/p2/doctrine/reflection~dev.json
Dependency "symfony/dotenv" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/lock" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/mailer" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "symfony/mailgun-mailer" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency "guzzlehttp/psr7" is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~inflector.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~debug.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-foundation.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~filesystem.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-babdev~pagerfanta.json from cache
Downloading https://repo.packagist.org/p2/babdev/pagerfanta.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php54.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-php54.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~icu.json from cache
Downloading https://repo.packagist.org/p2/symfony/icu.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~event-dispatcher.json from cache
Downloading https://repo.packagist.org/p2/psr/event-dispatcher.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-docblock.json from cache
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-docblock.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~var-dumper.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~cache-contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/cache-contracts.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~link.json from cache
Downloading https://repo.packagist.org/p2/psr/link.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~var-exporter.json from cache
Downloading https://repo.packagist.org/p2/symfony/var-exporter.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~simple-cache.json from cache
Downloading https://repo.packagist.org/p2/psr/simple-cache.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-apcu.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-apcu.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-acl.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~contracts.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-uuid.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~runtime.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-util.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php55.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-monolog~monolog.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-webimpress~safe-writer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-code.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ocramius~package-versions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-eventmanager.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-clue~stream-filter.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~message-factory.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~http-message.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-interfaces.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-components.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-hostname-parser.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-manipulations.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-parser.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-schemes.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jeremykendall~php-domain-parser.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~promise.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-guzzlehttp~promises.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hamcrest~hamcrest-php.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~comparator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jms~serializer.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~options-resolver.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~twig-bridge.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~extensions.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-access.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~messenger.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpstan~phpdoc-parser.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~compiler.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-csrf.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~process.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~inflector~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~debug~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~event-dispatcher~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-foundation~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~filesystem~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-babdev~pagerfanta~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php54~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~icu~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~event-dispatcher~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-docblock~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~var-dumper~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~cache-contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~link~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~var-exporter~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~simple-cache~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-apcu~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-acl~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~contracts~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-uuid~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~runtime~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-util~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~polyfill-php55~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-monolog~monolog~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-webimpress~safe-writer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-code~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ocramius~package-versions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-eventmanager~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-clue~stream-filter~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~message-factory~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-psr~http-message~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-interfaces~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-components~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-hostname-parser~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-manipulations~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-parser~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-schemes~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jeremykendall~php-domain-parser~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-php-http~promise~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-guzzlehttp~promises~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hamcrest~hamcrest-php~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~comparator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jms~serializer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~options-resolver~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~twig-bridge~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-twig~extensions~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~property-access~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~messenger~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpstan~phpdoc-parser~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~compiler~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-csrf~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~process~dev.json from cache
[304] https://repo.packagist.org/p2/babdev/pagerfanta.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php54.json
[304] https://repo.packagist.org/p2/symfony/icu.json
[304] https://repo.packagist.org/p2/psr/event-dispatcher.json
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-docblock.json
[304] https://repo.packagist.org/p2/symfony/cache-contracts.json
[304] https://repo.packagist.org/p2/psr/link.json
[304] https://repo.packagist.org/p2/symfony/var-exporter.json
[304] https://repo.packagist.org/p2/psr/simple-cache.json
[304] https://repo.packagist.org/p2/symfony/polyfill-apcu.json
Downloading https://repo.packagist.org/p2/symfony/security-acl.json if modified
Downloading https://repo.packagist.org/p2/symfony/security.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-uuid.json if modified
Downloading https://repo.packagist.org/p2/symfony/runtime.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-util.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-php55.json if modified
Downloading https://repo.packagist.org/p2/webimpress/safe-writer.json if modified
Downloading https://repo.packagist.org/p2/zendframework/zend-code.json if modified
Downloading https://repo.packagist.org/p2/laminas/laminas-eventmanager.json if modified
Downloading https://repo.packagist.org/p2/clue/stream-filter.json if modified
[304] https://repo.packagist.org/p2/symfony/security-acl.json
[304] https://repo.packagist.org/p2/symfony/security.json
[304] https://repo.packagist.org/p2/symfony/polyfill-uuid.json
[304] https://repo.packagist.org/p2/symfony/runtime.json
[304] https://repo.packagist.org/p2/symfony/polyfill-util.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php55.json
[304] https://repo.packagist.org/p2/webimpress/safe-writer.json
[304] https://repo.packagist.org/p2/zendframework/zend-code.json
[304] https://repo.packagist.org/p2/laminas/laminas-eventmanager.json
[304] https://repo.packagist.org/p2/clue/stream-filter.json
Downloading https://repo.packagist.org/p2/php-http/message-factory.json if modified
Downloading https://repo.packagist.org/p2/psr/http-message.json if modified
Downloading https://repo.packagist.org/p2/league/uri-interfaces.json if modified
Downloading https://repo.packagist.org/p2/league/uri-hostname-parser.json if modified
Downloading https://repo.packagist.org/p2/league/uri-manipulations.json if modified
Downloading https://repo.packagist.org/p2/league/uri-parser.json if modified
Downloading https://repo.packagist.org/p2/league/uri-schemes.json if modified
Downloading https://repo.packagist.org/p2/jeremykendall/php-domain-parser.json if modified
Downloading https://repo.packagist.org/p2/php-http/promise.json if modified
Downloading https://repo.packagist.org/p2/guzzlehttp/promises.json if modified
[304] https://repo.packagist.org/p2/php-http/message-factory.json
[304] https://repo.packagist.org/p2/psr/http-message.json
[304] https://repo.packagist.org/p2/league/uri-interfaces.json
[304] https://repo.packagist.org/p2/league/uri-hostname-parser.json
[304] https://repo.packagist.org/p2/league/uri-manipulations.json
[304] https://repo.packagist.org/p2/league/uri-parser.json
[304] https://repo.packagist.org/p2/league/uri-schemes.json
[304] https://repo.packagist.org/p2/jeremykendall/php-domain-parser.json
[304] https://repo.packagist.org/p2/php-http/promise.json
[304] https://repo.packagist.org/p2/guzzlehttp/promises.json
Downloading https://repo.packagist.org/p2/hamcrest/hamcrest-php.json if modified
Downloading https://repo.packagist.org/p2/sebastian/comparator.json if modified
Downloading https://repo.packagist.org/p2/twig/extensions.json if modified
Downloading https://repo.packagist.org/p2/phpstan/phpdoc-parser.json if modified
Downloading https://repo.packagist.org/p2/hoa/compiler.json if modified
Downloading https://repo.packagist.org/p2/babdev/pagerfanta~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-php54~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/icu~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/event-dispatcher~dev.json if modified
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-docblock~dev.json if modified
[304] https://repo.packagist.org/p2/hamcrest/hamcrest-php.json
[304] https://repo.packagist.org/p2/sebastian/comparator.json
[304] https://repo.packagist.org/p2/twig/extensions.json
[304] https://repo.packagist.org/p2/phpstan/phpdoc-parser.json
[304] https://repo.packagist.org/p2/hoa/compiler.json
[304] https://repo.packagist.org/p2/babdev/pagerfanta~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php54~dev.json
[304] https://repo.packagist.org/p2/symfony/icu~dev.json
[304] https://repo.packagist.org/p2/psr/event-dispatcher~dev.json
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-docblock~dev.json
Downloading https://repo.packagist.org/p2/symfony/cache-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/link~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/var-exporter~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/simple-cache~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-apcu~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/security-acl~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/security~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-uuid~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/runtime~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-util~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/cache-contracts~dev.json
[304] https://repo.packagist.org/p2/psr/link~dev.json
[304] https://repo.packagist.org/p2/symfony/var-exporter~dev.json
[304] https://repo.packagist.org/p2/psr/simple-cache~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-apcu~dev.json
[304] https://repo.packagist.org/p2/symfony/security-acl~dev.json
[304] https://repo.packagist.org/p2/symfony/security~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-uuid~dev.json
[304] https://repo.packagist.org/p2/symfony/runtime~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-util~dev.json
Downloading https://repo.packagist.org/p2/symfony/polyfill-php55~dev.json if modified
Downloading https://repo.packagist.org/p2/webimpress/safe-writer~dev.json if modified
Downloading https://repo.packagist.org/p2/zendframework/zend-code~dev.json if modified
Downloading https://repo.packagist.org/p2/laminas/laminas-eventmanager~dev.json if modified
Downloading https://repo.packagist.org/p2/clue/stream-filter~dev.json if modified
Downloading https://repo.packagist.org/p2/php-http/message-factory~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/http-message~dev.json if modified
Downloading https://repo.packagist.org/p2/league/uri-interfaces~dev.json if modified
Downloading https://repo.packagist.org/p2/league/uri-hostname-parser~dev.json if modified
Downloading https://repo.packagist.org/p2/league/uri-manipulations~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/polyfill-php55~dev.json
[304] https://repo.packagist.org/p2/webimpress/safe-writer~dev.json
[304] https://repo.packagist.org/p2/zendframework/zend-code~dev.json
[304] https://repo.packagist.org/p2/laminas/laminas-eventmanager~dev.json
[304] https://repo.packagist.org/p2/clue/stream-filter~dev.json
[304] https://repo.packagist.org/p2/php-http/message-factory~dev.json
[304] https://repo.packagist.org/p2/psr/http-message~dev.json
[304] https://repo.packagist.org/p2/league/uri-interfaces~dev.json
[304] https://repo.packagist.org/p2/league/uri-hostname-parser~dev.json
[304] https://repo.packagist.org/p2/league/uri-manipulations~dev.json
Downloading https://repo.packagist.org/p2/league/uri-parser~dev.json if modified
Downloading https://repo.packagist.org/p2/league/uri-schemes~dev.json if modified
Downloading https://repo.packagist.org/p2/jeremykendall/php-domain-parser~dev.json if modified
Downloading https://repo.packagist.org/p2/php-http/promise~dev.json if modified
Downloading https://repo.packagist.org/p2/guzzlehttp/promises~dev.json if modified
Downloading https://repo.packagist.org/p2/hamcrest/hamcrest-php~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/comparator~dev.json if modified
Downloading https://repo.packagist.org/p2/twig/extensions~dev.json if modified
Downloading https://repo.packagist.org/p2/phpstan/phpdoc-parser~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/compiler~dev.json if modified
[304] https://repo.packagist.org/p2/league/uri-parser~dev.json
[304] https://repo.packagist.org/p2/league/uri-schemes~dev.json
[304] https://repo.packagist.org/p2/jeremykendall/php-domain-parser~dev.json
[304] https://repo.packagist.org/p2/php-http/promise~dev.json
[304] https://repo.packagist.org/p2/guzzlehttp/promises~dev.json
[304] https://repo.packagist.org/p2/hamcrest/hamcrest-php~dev.json
[304] https://repo.packagist.org/p2/sebastian/comparator~dev.json
[304] https://repo.packagist.org/p2/twig/extensions~dev.json
[304] https://repo.packagist.org/p2/phpstan/phpdoc-parser~dev.json
[304] https://repo.packagist.org/p2/hoa/compiler~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-hostname-parser.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~type-resolver.json from cache
Downloading https://repo.packagist.org/p2/phpdocumentor/type-resolver.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common.json from cache
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-common.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-kernel.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ircmaxell~password-compat.json from cache
Downloading https://repo.packagist.org/p2/ircmaxell/password-compat.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-eventmanager.json from cache
Downloading https://repo.packagist.org/p2/zendframework/zend-eventmanager.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-squizlabs~php-codesniffer.json from cache
Downloading https://repo.packagist.org/p2/squizlabs/php_codesniffer.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-stdlib.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-athletic~athletic.json from cache
Downloading https://repo.packagist.org/p2/athletic/athletic.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-components.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-parser.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~diff.json from cache
Downloading https://repo.packagist.org/p2/sebastian/diff.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~exporter.json from cache
Downloading https://repo.packagist.org/p2/sebastian/exporter.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~consistency.json from cache
Downloading https://repo.packagist.org/p2/hoa/consistency.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~exception.json from cache
Downloading https://repo.packagist.org/p2/hoa/exception.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~file.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~iterator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~math.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~protocol.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~regex.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~visitor.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-hostname-parser~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~security-core~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~type-resolver~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-symfony~http-kernel~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-ircmaxell~password-compat~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-eventmanager~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-squizlabs~php-codesniffer~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-stdlib~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-athletic~athletic~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-components~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-league~uri-parser~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~diff~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~exporter~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~consistency~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~exception~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~file~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~iterator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~math~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~protocol~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~regex~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~visitor~dev.json from cache
[304] https://repo.packagist.org/p2/phpdocumentor/type-resolver.json
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-common.json
[304] https://repo.packagist.org/p2/ircmaxell/password-compat.json
[304] https://repo.packagist.org/p2/zendframework/zend-eventmanager.json
[304] https://repo.packagist.org/p2/squizlabs/php_codesniffer.json
[304] https://repo.packagist.org/p2/athletic/athletic.json
[304] https://repo.packagist.org/p2/sebastian/diff.json
[304] https://repo.packagist.org/p2/sebastian/exporter.json
[304] https://repo.packagist.org/p2/hoa/consistency.json
[304] https://repo.packagist.org/p2/hoa/exception.json
Downloading https://repo.packagist.org/p2/hoa/file.json if modified
Downloading https://repo.packagist.org/p2/hoa/iterator.json if modified
Downloading https://repo.packagist.org/p2/hoa/math.json if modified
Downloading https://repo.packagist.org/p2/hoa/protocol.json if modified
Downloading https://repo.packagist.org/p2/hoa/regex.json if modified
Downloading https://repo.packagist.org/p2/hoa/visitor.json if modified
Downloading https://repo.packagist.org/p2/phpdocumentor/type-resolver~dev.json if modified
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-common~dev.json if modified
Downloading https://repo.packagist.org/p2/ircmaxell/password-compat~dev.json if modified
Downloading https://repo.packagist.org/p2/zendframework/zend-eventmanager~dev.json if modified
[304] https://repo.packagist.org/p2/hoa/file.json
[304] https://repo.packagist.org/p2/hoa/iterator.json
[304] https://repo.packagist.org/p2/hoa/math.json
[304] https://repo.packagist.org/p2/hoa/protocol.json
[304] https://repo.packagist.org/p2/hoa/regex.json
[304] https://repo.packagist.org/p2/hoa/visitor.json
[304] https://repo.packagist.org/p2/phpdocumentor/type-resolver~dev.json
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-common~dev.json
[304] https://repo.packagist.org/p2/ircmaxell/password-compat~dev.json
[304] https://repo.packagist.org/p2/zendframework/zend-eventmanager~dev.json
Downloading https://repo.packagist.org/p2/squizlabs/php_codesniffer~dev.json if modified
Downloading https://repo.packagist.org/p2/athletic/athletic~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/diff~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/exporter~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/consistency~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/exception~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/file~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/iterator~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/math~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/protocol~dev.json if modified
[304] https://repo.packagist.org/p2/squizlabs/php_codesniffer~dev.json
[304] https://repo.packagist.org/p2/athletic/athletic~dev.json
[304] https://repo.packagist.org/p2/sebastian/diff~dev.json
[304] https://repo.packagist.org/p2/sebastian/exporter~dev.json
[304] https://repo.packagist.org/p2/hoa/consistency~dev.json
[304] https://repo.packagist.org/p2/hoa/exception~dev.json
[304] https://repo.packagist.org/p2/hoa/file~dev.json
[304] https://repo.packagist.org/p2/hoa/iterator~dev.json
[304] https://repo.packagist.org/p2/hoa/math~dev.json
[304] https://repo.packagist.org/p2/hoa/protocol~dev.json
Downloading https://repo.packagist.org/p2/hoa/regex~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/visitor~dev.json if modified
[304] https://repo.packagist.org/p2/hoa/regex~dev.json
[304] https://repo.packagist.org/p2/hoa/visitor~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-hydrator.json from cache
Downloading https://repo.packagist.org/p2/laminas/laminas-hydrator.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jeremykendall~php-domain-parser.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-stdlib.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~recursion-context.json from cache
Downloading https://repo.packagist.org/p2/sebastian/recursion-context.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~event.json from cache
Downloading https://repo.packagist.org/p2/hoa/event.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~stream.json from cache
Downloading https://repo.packagist.org/p2/hoa/stream.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~compiler.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~zformat.json from cache
Downloading https://repo.packagist.org/p2/hoa/zformat.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~ustring.json from cache
Downloading https://repo.packagist.org/p2/hoa/ustring.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~math.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~consistency.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~exception.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~iterator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~protocol.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~visitor.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-hydrator~dev.json from cache
Downloading https://repo.packagist.org/p2/laminas/laminas-hydrator~dev.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-jeremykendall~php-domain-parser~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-stdlib~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-sebastian~recursion-context~dev.json from cache
Downloading https://repo.packagist.org/p2/sebastian/recursion-context~dev.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~event~dev.json from cache
Downloading https://repo.packagist.org/p2/hoa/event~dev.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~stream~dev.json from cache
Downloading https://repo.packagist.org/p2/hoa/stream~dev.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~compiler~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~zformat~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~ustring~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~math~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~consistency~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~exception~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~iterator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~protocol~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~visitor~dev.json from cache
[304] https://repo.packagist.org/p2/laminas/laminas-hydrator.json
[304] https://repo.packagist.org/p2/sebastian/recursion-context.json
[304] https://repo.packagist.org/p2/hoa/event.json
[304] https://repo.packagist.org/p2/hoa/stream.json
[304] https://repo.packagist.org/p2/hoa/zformat.json
[304] https://repo.packagist.org/p2/hoa/ustring.json
[304] https://repo.packagist.org/p2/laminas/laminas-hydrator~dev.json
[304] https://repo.packagist.org/p2/sebastian/recursion-context~dev.json
[304] https://repo.packagist.org/p2/hoa/event~dev.json
[304] https://repo.packagist.org/p2/hoa/stream~dev.json
Downloading https://repo.packagist.org/p2/hoa/zformat~dev.json if modified
Downloading https://repo.packagist.org/p2/hoa/ustring~dev.json if modified
[304] https://repo.packagist.org/p2/hoa/zformat~dev.json
[304] https://repo.packagist.org/p2/hoa/ustring~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-hydrator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~file.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~regex.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~core.json from cache
Downloading https://repo.packagist.org/p2/hoa/core.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~iterator.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~compiler.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-stdlib.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-zendframework~zend-hydrator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~file~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~regex~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~core~dev.json from cache
Downloading https://repo.packagist.org/p2/hoa/core~dev.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~iterator~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~compiler~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-laminas~laminas-stdlib~dev.json from cache
[304] https://repo.packagist.org/p2/hoa/core.json
[304] https://repo.packagist.org/p2/hoa/core~dev.json
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~ustring.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~visitor.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~string.json from cache
Downloading https://repo.packagist.org/p2/hoa/string.json if modified
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~ustring~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~visitor~dev.json from cache
Reading /home/roboter/.cache/composer/repo/https---repo.packagist.org/provider-hoa~string~dev.json from cache
Downloading https://repo.packagist.org/p2/hoa/string~dev.json if modified
[304] https://repo.packagist.org/p2/hoa/string.json
[304] https://repo.packagist.org/p2/hoa/string~dev.json
> pre-pool-create: Symfony\Flex\Flex_composer_tmp1->truncatePackages
Restricting packages listed in "symfony/symfony" to "4.4.*"
Generating rules
Resolving dependencies through SAT

Dependency resolution completed in 0.002 seconds
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - bmh/backend dev-develop conflicts with sylius/sylius v1.10.0-beta.1.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.10.0-alpha.1.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.4.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.3.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.2.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.1.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0-RC.2.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0-RC.1.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0-BETA.3.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0-BETA.2.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0-BETA.1.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0-ALPHA.2.
    - bmh/backend dev-develop conflicts with sylius/sylius v1.9.0-ALPHA.1.
    - bmh/backend dev-develop conflicts with sylius/sylius 1.9.x-dev.
    - bmh/backend dev-develop conflicts with sylius/sylius 1.11.x-dev.
    - bmh/backend dev-develop conflicts with sylius/sylius 1.10.x-dev.
    - bmh/backend is present at version dev-develop and cannot be modified by Composer
    - Root composer.json requires sylius/sylius ^1.9 -> satisfiable by sylius/sylius[v1.9.0-ALPHA.1, v1.9.0-ALPHA.2, v1.9.0-BETA.1, v1.9.0-BETA.2, v1.9.0-BETA.3, v1.9.0-RC.1, v1.9.0-RC.2, v1.9.0, v1.9.1, v1.9.2, v1.9.3, v1.9.4, 1.9.x-dev, v1.10.0-alpha.1, v1.10.0-beta.1, 1.10.x-dev, 1.11.x-dev (alias of dev-master)].


Installation failed, reverting ./composer.json and ./composer.lock to their original content.

I'm again surprised that there is a conflict with the root composer package itself. See for this the following issue: bmh/backend is present at version dev-develop and cannot be modified by Composer

@Seldaek
Copy link
Member

Seldaek commented Jun 8, 2021

I am guessing it's to do with one of your replace or conflict rules.. But I can't know for sure. Please update to latest composer, 2.0.7 is over six months old, we have done lots more improvements since. Maybe 2.1.2 reports it correctly.

@reneroboter
Copy link
Author

@Seldaek thank you. After the upgrade to the current composer version, I got much more details. There was a conflict with the replacement of symfony/polyfill-mbstring. I removed the replacement for test purposes, and now it worked. At this point I can solve the issue by myself and this issue can be closed. Thanks for your hints and time @Seldaek 🙂

@Seldaek
Copy link
Member

Seldaek commented Jun 8, 2021

Ok great :)

@Seldaek Seldaek closed this as completed Jun 8, 2021
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

3 participants