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

Generate helpers after package discovery #1185

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

netpok
Copy link
Contributor

@netpok netpok commented Mar 17, 2021

Summary

This PR allows automatic helper file generation after composer install or update.

This is accomplished by running the set commands after package:discover successfully completed. This command is executed as part of the dump-autoload script and technically we want to generate the helpers after packages are discovered so this should be even semantically okay-ish.

Originally I thought this would be unnecessary but as it turns out there is no way to run ide-helper in a way that it does not break in non-dev environment without introducing a userland command under Windows.

The only caveat is that php artisan package:dis will still execute the package discover command but won't trigger this automation, since the main target is to run after composer commands this should not matter much.

This should also make PR #1067 unnecessary.

Type of change

  • New feature (non-breaking change which adds functionality)
  • This change requires a documentation update

Checklist

  • Existing tests have been adapted and/or new tests have been added
  • Add a CHANGELOG.md entry
  • Update the README.md
  • Code style has been fixed via composer fix-style

Copy link
Collaborator

@mfn mfn left a comment

Choose a reason for hiding this comment

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

Makes sense to me and completes your prior work, thanks @netpok !

I've added the changelog entry and also updated the readme, I think it makes sense to promote this now. What do you think?

@netpok
Copy link
Contributor Author

netpok commented May 2, 2021

Yeah, that's the idea, sorry for the late answer. Can I do anything on my side to expedite merging?

@mfn
Copy link
Collaborator

mfn commented May 2, 2021

@netpok maybe syncing with master (or rebase if you prefer), since the last change is already > 1 month old. There are no merge conflicts, but I guess it's good to sync.

Would be great if you could be so kind and then ping me once more, thank you

@netpok
Copy link
Contributor Author

netpok commented May 2, 2021

@mfn Rebased it to master

@mfn
Copy link
Collaborator

mfn commented May 3, 2021

Hmm, it seems the prefer-lowest have an issue resolving dependencies, same happened in #1216 (comment)

@mfn
Copy link
Collaborator

mfn commented May 3, 2021

Have not yet analyzed it, but FTR I'm pro removing this one anyway, I don't think it's that useful (see #1076 )

@mfn
Copy link
Collaborator

mfn commented May 3, 2021

I couldn't reproduce it locally with this json (the one in CI is modified during the run):

{
    "name": "barryvdh/laravel-ide-helper",
    "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
    "keywords": [
        "laravel",
        "autocomplete",
        "ide",
        "helper",
        "phpstorm",
        "netbeans",
        "sublime",
        "codeintel",
        "phpdoc"
    ],
    "license": "MIT",
    "authors": [
        {
            "name": "Barry vd. Heuvel",
            "email": "barryvdh@gmail.com"
        }
    ],
    "require": {
        "php": "^7.3 || ^8.0",
        "ext-json": "*",
        "barryvdh/reflection-docblock": "^2.0.6",
        "composer/composer": "^1.6 || ^2",
        "doctrine/dbal": "^2.6 || ^3",
        "illuminate/console": "^8",
        "illuminate/filesystem": "^8",
        "illuminate/support": "^8",
        "laravel/framework": "8.*",
        "nikic/php-parser": "^4.7",
        "phpdocumentor/type-resolver": "^1.1.0"
    },
    "require-dev": {
        "ext-pdo_sqlite": "*",
        "illuminate/config": "^8",
        "illuminate/view": "^8",
        "mockery/mockery": "^1.4",
        "orchestra/testbench": "^6",
        "phpunit/phpunit": "^8.5 || ^9",
        "spatie/phpunit-snapshot-assertions": "^3 || ^4"
    },
    "suggest": {
        "illuminate/events": "Required for automatic helper generation (^6|^7|^8)."
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.9-dev"
        },
        "laravel": {
            "providers": [
                "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
            ]
        }
    },
    "autoload": {
        "psr-4": {
            "Barryvdh\\LaravelIdeHelper\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Barryvdh\\LaravelIdeHelper\\Tests\\": "tests"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "scripts": {
        "analyze": "psalm",
        "check-style": [
            "php-cs-fixer fix --diff --diff-format=udiff --dry-run",
            "php-cs-fixer fix --diff --diff-format=udiff --dry-run --config=.php_cs.tests.php"
        ],
        "fix-style": [
            "php-cs-fixer fix",
            "php-cs-fixer fix --config=.php_cs.tests.php"
        ],
        "psalm-set-baseline": "psalm --set-baseline=psalm-baseline.xml",
        "test": "phpunit",
        "test-ci": "phpunit -d --without-creating-snapshots",
        "test-regenerate": "phpunit -d --update-snapshots"
    }
}
Full output of time composer update -vvv --prefer-lowest --prefer-dist
$ php -v
PHP 7.4.18 (cli) (built: Apr 30 2021 09:55:21) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.18, Copyright (c), by Zend Technologies
$ time composer update -vvv --prefer-lowest --prefer-dist
Reading ./composer.json (/Users/user/src/laravel-ide-helper/composer.json)
Loading config file ./composer.json (/Users/user/src/laravel-ide-helper/composer.json)
Checked CA file /usr/local/etc/openssl@1.1/cert.pem: valid
Executing command (/Users/user/src/laravel-ide-helper): git branch -a --no-color --no-abbrev -v
Reading /Users/user/.composer/composer.json
Loading config file /Users/user/.composer/composer.json (/Users/user/.composer/composer.json)
Reading /Users/user/.composer/vendor/composer/installed.json
Loading plugin Symfony\Flex\Flex (from symfony/flex, installed globally)
Running 2.0.13 (2021-04-27 13:11:08) with PHP 7.4.18 on Darwin / 19.6.0
> pre-update-cmd: Symfony\Flex\Flex->configureInstaller
Loading composer repositories with package information
Downloading https://repo.packagist.org/packages.json
[200] https://repo.packagist.org/packages.json
Writing /Users/user/.composer/cache/repo/https---repo.packagist.org/packages.json into cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-barryvdh~reflection-docblock.json from cache
Downloading https://repo.packagist.org/p2/barryvdh/reflection-docblock.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~composer.json from cache
Downloading https://repo.packagist.org/p2/composer/composer.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~dbal.json from cache
Downloading https://repo.packagist.org/p2/doctrine/dbal.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~console.json from cache
Downloading https://repo.packagist.org/p2/illuminate/console.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~filesystem.json from cache
Downloading https://repo.packagist.org/p2/illuminate/filesystem.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~support.json from cache
Downloading https://repo.packagist.org/p2/illuminate/support.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-laravel~framework.json from cache
Downloading https://repo.packagist.org/p2/laravel/framework.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-nikic~php-parser.json from cache
Downloading https://repo.packagist.org/p2/nikic/php-parser.json if modified
Reading /Users/user/.composer/cache/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 /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~config.json from cache
Downloading https://repo.packagist.org/p2/illuminate/config.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~view.json from cache
Downloading https://repo.packagist.org/p2/illuminate/view.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-mockery~mockery.json from cache
Downloading https://repo.packagist.org/p2/mockery/mockery.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-orchestra~testbench.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~phpunit.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~phpunit-snapshot-assertions.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-barryvdh~reflection-docblock~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~composer~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~dbal~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~console~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~filesystem~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~support~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-laravel~framework~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-nikic~php-parser~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor~type-resolver~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~config~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~view~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-mockery~mockery~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-orchestra~testbench~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~phpunit~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~phpunit-snapshot-assertions~dev.json from cache
[304] https://repo.packagist.org/p2/barryvdh/reflection-docblock.json
[304] https://repo.packagist.org/p2/composer/composer.json
[304] https://repo.packagist.org/p2/doctrine/dbal.json
Downloading https://repo.packagist.org/p2/orchestra/testbench.json if modified
Downloading https://repo.packagist.org/p2/phpunit/phpunit.json if modified
Downloading https://repo.packagist.org/p2/spatie/phpunit-snapshot-assertions.json if modified
[304] https://repo.packagist.org/p2/illuminate/console.json
[304] https://repo.packagist.org/p2/illuminate/filesystem.json
[304] https://repo.packagist.org/p2/illuminate/support.json
[304] https://repo.packagist.org/p2/laravel/framework.json
[304] https://repo.packagist.org/p2/nikic/php-parser.json
[304] https://repo.packagist.org/p2/phpdocumentor/type-resolver.json
[304] https://repo.packagist.org/p2/illuminate/config.json
Downloading https://repo.packagist.org/p2/barryvdh/reflection-docblock~dev.json if modified
Downloading https://repo.packagist.org/p2/composer/composer~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/dbal~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/console~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/filesystem~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/support~dev.json if modified
Downloading https://repo.packagist.org/p2/laravel/framework~dev.json if modified
[304] https://repo.packagist.org/p2/illuminate/view.json
[304] https://repo.packagist.org/p2/mockery/mockery.json
[304] https://repo.packagist.org/p2/orchestra/testbench.json
[304] https://repo.packagist.org/p2/phpunit/phpunit.json
[304] https://repo.packagist.org/p2/spatie/phpunit-snapshot-assertions.json
Downloading https://repo.packagist.org/p2/nikic/php-parser~dev.json if modified
Downloading https://repo.packagist.org/p2/phpdocumentor/type-resolver~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/config~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/view~dev.json if modified
Downloading https://repo.packagist.org/p2/mockery/mockery~dev.json if modified
[304] https://repo.packagist.org/p2/barryvdh/reflection-docblock~dev.json
[304] https://repo.packagist.org/p2/composer/composer~dev.json
[304] https://repo.packagist.org/p2/doctrine/dbal~dev.json
[304] https://repo.packagist.org/p2/illuminate/console~dev.json
[304] https://repo.packagist.org/p2/illuminate/filesystem~dev.json
[304] https://repo.packagist.org/p2/illuminate/support~dev.json
[304] https://repo.packagist.org/p2/laravel/framework~dev.json
Downloading https://repo.packagist.org/p2/orchestra/testbench~dev.json if modified
Downloading https://repo.packagist.org/p2/phpunit/phpunit~dev.json if modified
Downloading https://repo.packagist.org/p2/spatie/phpunit-snapshot-assertions~dev.json if modified
[304] https://repo.packagist.org/p2/nikic/php-parser~dev.json
[304] https://repo.packagist.org/p2/phpdocumentor/type-resolver~dev.json
[304] https://repo.packagist.org/p2/illuminate/config~dev.json
[304] https://repo.packagist.org/p2/illuminate/view~dev.json
[304] https://repo.packagist.org/p2/mockery/mockery~dev.json
[304] https://repo.packagist.org/p2/orchestra/testbench~dev.json
[304] https://repo.packagist.org/p2/phpunit/phpunit~dev.json
[304] https://repo.packagist.org/p2/spatie/phpunit-snapshot-assertions~dev.json
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~ca-bundle.json from cache
Downloading https://repo.packagist.org/p2/composer/ca-bundle.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~metadata-minifier.json from cache
Downloading https://repo.packagist.org/p2/composer/metadata-minifier.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~semver.json from cache
Downloading https://repo.packagist.org/p2/composer/semver.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~spdx-licenses.json from cache
Downloading https://repo.packagist.org/p2/composer/spdx-licenses.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~xdebug-handler.json from cache
Downloading https://repo.packagist.org/p2/composer/xdebug-handler.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-justinrainbow~json-schema.json from cache
Downloading https://repo.packagist.org/p2/justinrainbow/json-schema.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~log.json from cache
Downloading https://repo.packagist.org/p2/psr/log.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-seld~jsonlint.json from cache
Downloading https://repo.packagist.org/p2/seld/jsonlint.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-seld~phar-utils.json from cache
Downloading https://repo.packagist.org/p2/seld/phar-utils.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~console.json from cache
Downloading https://repo.packagist.org/p2/symfony/console.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~filesystem.json from cache
Downloading https://repo.packagist.org/p2/symfony/filesystem.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~finder.json from cache
Downloading https://repo.packagist.org/p2/symfony/finder.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~process.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-react~promise.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-seld~cli-prompt.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~package-versions-deprecated.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~cache.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~deprecations.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~event-manager.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~common.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~collections.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~contracts.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~macroable.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~inflector.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-nesbot~carbon.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-voku~portable-ascii.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-dragonmantank~cron-expression.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-egulias~email-validator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-league~commonmark.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-league~flysystem.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-monolog~monolog.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-opis~closure.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~container.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~simple-cache.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ramsey~uuid.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~error-handler.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-foundation.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-kernel.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~mime.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~routing.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~var-dumper.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-tijsverkoyen~css-to-inline-styles.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-vlucas~phpdotenv.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~container.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~events.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-hamcrest~hamcrest-php.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-orchestra~testbench-core.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~laravel-ray.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~instantiator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-myclabs~deep-copy.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phar-io~manifest.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phar-io~version.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpspec~prophecy.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-code-coverage.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-file-iterator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-invoker.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-text-template.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-timer.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~cli-parser.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~code-unit.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~comparator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~diff.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~environment.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~exporter.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~global-state.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~object-enumerator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~resource-operations.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~type.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~version.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~property-access.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~serializer.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~yaml.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~cache.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~ca-bundle~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~metadata-minifier~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~semver~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~spdx-licenses~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~xdebug-handler~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-justinrainbow~json-schema~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~log~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-seld~jsonlint~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-seld~phar-utils~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~console~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~filesystem~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~finder~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~process~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-react~promise~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-seld~cli-prompt~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-composer~package-versions-deprecated~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~cache~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~deprecations~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~event-manager~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~common~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~collections~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~macroable~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~inflector~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-nesbot~carbon~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-voku~portable-ascii~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-dragonmantank~cron-expression~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-egulias~email-validator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-league~commonmark~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-league~flysystem~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-monolog~monolog~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-opis~closure~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~container~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~simple-cache~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ramsey~uuid~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-swiftmailer~swiftmailer~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~error-handler~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-foundation~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-kernel~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~mime~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~routing~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~var-dumper~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-tijsverkoyen~css-to-inline-styles~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-vlucas~phpdotenv~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~container~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~events~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-hamcrest~hamcrest-php~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-orchestra~testbench-core~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~laravel-ray~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~instantiator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-myclabs~deep-copy~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phar-io~manifest~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phar-io~version~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpspec~prophecy~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-code-coverage~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-file-iterator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-invoker~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-text-template~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-timer~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~cli-parser~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~code-unit~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~comparator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~diff~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~environment~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~exporter~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~global-state~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~object-enumerator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~resource-operations~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~type~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~version~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~property-access~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~serializer~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~yaml~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~cache~dev.json from cache
[304] https://repo.packagist.org/p2/composer/ca-bundle.json
[304] https://repo.packagist.org/p2/composer/metadata-minifier.json
[304] https://repo.packagist.org/p2/composer/semver.json
[304] https://repo.packagist.org/p2/composer/spdx-licenses.json
[304] https://repo.packagist.org/p2/composer/xdebug-handler.json
[304] https://repo.packagist.org/p2/justinrainbow/json-schema.json
[304] https://repo.packagist.org/p2/psr/log.json
[304] https://repo.packagist.org/p2/seld/jsonlint.json
Downloading https://repo.packagist.org/p2/symfony/process.json if modified
Downloading https://repo.packagist.org/p2/react/promise.json if modified
Downloading https://repo.packagist.org/p2/seld/cli-prompt.json if modified
Downloading https://repo.packagist.org/p2/composer/package-versions-deprecated.json if modified
Downloading https://repo.packagist.org/p2/doctrine/cache.json if modified
Downloading https://repo.packagist.org/p2/doctrine/deprecations.json if modified
Downloading https://repo.packagist.org/p2/doctrine/event-manager.json if modified
Downloading https://repo.packagist.org/p2/doctrine/common.json if modified
[304] https://repo.packagist.org/p2/seld/phar-utils.json
[304] https://repo.packagist.org/p2/symfony/console.json
[304] https://repo.packagist.org/p2/symfony/filesystem.json
[304] https://repo.packagist.org/p2/symfony/finder.json
Downloading https://repo.packagist.org/p2/illuminate/collections.json if modified
Downloading https://repo.packagist.org/p2/illuminate/contracts.json if modified
Downloading https://repo.packagist.org/p2/illuminate/macroable.json if modified
Downloading https://repo.packagist.org/p2/doctrine/inflector.json if modified
[304] https://repo.packagist.org/p2/symfony/process.json
[304] https://repo.packagist.org/p2/react/promise.json
[304] https://repo.packagist.org/p2/seld/cli-prompt.json
[304] https://repo.packagist.org/p2/composer/package-versions-deprecated.json
[304] https://repo.packagist.org/p2/doctrine/cache.json
[304] https://repo.packagist.org/p2/doctrine/deprecations.json
[304] https://repo.packagist.org/p2/doctrine/event-manager.json
[304] https://repo.packagist.org/p2/doctrine/common.json
Downloading https://repo.packagist.org/p2/nesbot/carbon.json if modified
Downloading https://repo.packagist.org/p2/voku/portable-ascii.json if modified
Downloading https://repo.packagist.org/p2/dragonmantank/cron-expression.json if modified
Downloading https://repo.packagist.org/p2/egulias/email-validator.json if modified
Downloading https://repo.packagist.org/p2/league/commonmark.json if modified
Downloading https://repo.packagist.org/p2/league/flysystem.json if modified
Downloading https://repo.packagist.org/p2/monolog/monolog.json if modified
Downloading https://repo.packagist.org/p2/opis/closure.json if modified
[304] https://repo.packagist.org/p2/illuminate/collections.json
[304] https://repo.packagist.org/p2/illuminate/contracts.json
[304] https://repo.packagist.org/p2/illuminate/macroable.json
[304] https://repo.packagist.org/p2/doctrine/inflector.json
Downloading https://repo.packagist.org/p2/psr/container.json if modified
Downloading https://repo.packagist.org/p2/psr/simple-cache.json if modified
Downloading https://repo.packagist.org/p2/ramsey/uuid.json if modified
Downloading https://repo.packagist.org/p2/swiftmailer/swiftmailer.json if modified
[304] https://repo.packagist.org/p2/nesbot/carbon.json
[304] https://repo.packagist.org/p2/voku/portable-ascii.json
[304] https://repo.packagist.org/p2/dragonmantank/cron-expression.json
[304] https://repo.packagist.org/p2/egulias/email-validator.json
[304] https://repo.packagist.org/p2/league/commonmark.json
[304] https://repo.packagist.org/p2/league/flysystem.json
[304] https://repo.packagist.org/p2/monolog/monolog.json
[304] https://repo.packagist.org/p2/opis/closure.json
Downloading https://repo.packagist.org/p2/symfony/error-handler.json if modified
Downloading https://repo.packagist.org/p2/symfony/http-foundation.json if modified
Downloading https://repo.packagist.org/p2/symfony/http-kernel.json if modified
Downloading https://repo.packagist.org/p2/symfony/mime.json if modified
Downloading https://repo.packagist.org/p2/symfony/routing.json if modified
Downloading https://repo.packagist.org/p2/symfony/var-dumper.json if modified
Downloading https://repo.packagist.org/p2/tijsverkoyen/css-to-inline-styles.json if modified
Downloading https://repo.packagist.org/p2/vlucas/phpdotenv.json if modified
[304] https://repo.packagist.org/p2/psr/container.json
[304] https://repo.packagist.org/p2/psr/simple-cache.json
[304] https://repo.packagist.org/p2/ramsey/uuid.json
[304] https://repo.packagist.org/p2/swiftmailer/swiftmailer.json
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-common.json if modified
Downloading https://repo.packagist.org/p2/illuminate/container.json if modified
Downloading https://repo.packagist.org/p2/illuminate/events.json if modified
Downloading https://repo.packagist.org/p2/hamcrest/hamcrest-php.json if modified
[304] https://repo.packagist.org/p2/symfony/error-handler.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/mime.json
[304] https://repo.packagist.org/p2/symfony/routing.json
[304] https://repo.packagist.org/p2/symfony/var-dumper.json
Downloading https://repo.packagist.org/p2/orchestra/testbench-core.json if modified
Downloading https://repo.packagist.org/p2/spatie/laravel-ray.json if modified
Downloading https://repo.packagist.org/p2/doctrine/instantiator.json if modified
Downloading https://repo.packagist.org/p2/myclabs/deep-copy.json if modified
Downloading https://repo.packagist.org/p2/phar-io/manifest.json if modified
Downloading https://repo.packagist.org/p2/phar-io/version.json if modified
[304] https://repo.packagist.org/p2/tijsverkoyen/css-to-inline-styles.json
[304] https://repo.packagist.org/p2/vlucas/phpdotenv.json
Downloading https://repo.packagist.org/p2/phpspec/prophecy.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-code-coverage.json if modified
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-common.json
[304] https://repo.packagist.org/p2/illuminate/container.json
[304] https://repo.packagist.org/p2/illuminate/events.json
[304] https://repo.packagist.org/p2/hamcrest/hamcrest-php.json
Downloading https://repo.packagist.org/p2/phpunit/php-file-iterator.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-invoker.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-text-template.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-timer.json if modified
[304] https://repo.packagist.org/p2/orchestra/testbench-core.json
[304] https://repo.packagist.org/p2/spatie/laravel-ray.json
[304] https://repo.packagist.org/p2/doctrine/instantiator.json
[304] https://repo.packagist.org/p2/myclabs/deep-copy.json
[304] https://repo.packagist.org/p2/phar-io/manifest.json
[304] https://repo.packagist.org/p2/phar-io/version.json
Downloading https://repo.packagist.org/p2/sebastian/cli-parser.json if modified
Downloading https://repo.packagist.org/p2/sebastian/code-unit.json if modified
Downloading https://repo.packagist.org/p2/sebastian/comparator.json if modified
Downloading https://repo.packagist.org/p2/sebastian/diff.json if modified
Downloading https://repo.packagist.org/p2/sebastian/environment.json if modified
Downloading https://repo.packagist.org/p2/sebastian/exporter.json if modified
[304] https://repo.packagist.org/p2/phpspec/prophecy.json
[304] https://repo.packagist.org/p2/phpunit/php-code-coverage.json
Downloading https://repo.packagist.org/p2/sebastian/global-state.json if modified
Downloading https://repo.packagist.org/p2/sebastian/object-enumerator.json if modified
[304] https://repo.packagist.org/p2/phpunit/php-file-iterator.json
[304] https://repo.packagist.org/p2/phpunit/php-invoker.json
[304] https://repo.packagist.org/p2/phpunit/php-text-template.json
[304] https://repo.packagist.org/p2/phpunit/php-timer.json
Downloading https://repo.packagist.org/p2/sebastian/resource-operations.json if modified
Downloading https://repo.packagist.org/p2/sebastian/type.json if modified
Downloading https://repo.packagist.org/p2/sebastian/version.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-access.json if modified
[304] https://repo.packagist.org/p2/sebastian/cli-parser.json
[304] https://repo.packagist.org/p2/sebastian/code-unit.json
[304] https://repo.packagist.org/p2/sebastian/comparator.json
[304] https://repo.packagist.org/p2/sebastian/diff.json
[304] https://repo.packagist.org/p2/sebastian/environment.json
[304] https://repo.packagist.org/p2/sebastian/exporter.json
Downloading https://repo.packagist.org/p2/symfony/serializer.json if modified
Downloading https://repo.packagist.org/p2/symfony/yaml.json if modified
Downloading https://repo.packagist.org/p2/psr/cache.json if modified
Downloading https://repo.packagist.org/p2/composer/ca-bundle~dev.json if modified
Downloading https://repo.packagist.org/p2/composer/metadata-minifier~dev.json if modified
Downloading https://repo.packagist.org/p2/composer/semver~dev.json if modified
[304] https://repo.packagist.org/p2/sebastian/global-state.json
[304] https://repo.packagist.org/p2/sebastian/object-enumerator.json
Downloading https://repo.packagist.org/p2/composer/spdx-licenses~dev.json if modified
Downloading https://repo.packagist.org/p2/composer/xdebug-handler~dev.json if modified
[304] https://repo.packagist.org/p2/sebastian/resource-operations.json
[304] https://repo.packagist.org/p2/sebastian/type.json
[304] https://repo.packagist.org/p2/sebastian/version.json
[304] https://repo.packagist.org/p2/symfony/property-access.json
Downloading https://repo.packagist.org/p2/justinrainbow/json-schema~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/log~dev.json if modified
Downloading https://repo.packagist.org/p2/seld/jsonlint~dev.json if modified
Downloading https://repo.packagist.org/p2/seld/phar-utils~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/serializer.json
[304] https://repo.packagist.org/p2/symfony/yaml.json
[304] https://repo.packagist.org/p2/psr/cache.json
[304] https://repo.packagist.org/p2/composer/ca-bundle~dev.json
[304] https://repo.packagist.org/p2/composer/metadata-minifier~dev.json
[304] https://repo.packagist.org/p2/composer/semver~dev.json
Downloading https://repo.packagist.org/p2/symfony/console~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/process~dev.json if modified
Downloading https://repo.packagist.org/p2/react/promise~dev.json if modified
Downloading https://repo.packagist.org/p2/seld/cli-prompt~dev.json if modified
[304] https://repo.packagist.org/p2/composer/spdx-licenses~dev.json
[304] https://repo.packagist.org/p2/composer/xdebug-handler~dev.json
[304] https://repo.packagist.org/p2/justinrainbow/json-schema~dev.json
[304] https://repo.packagist.org/p2/psr/log~dev.json
[304] https://repo.packagist.org/p2/seld/jsonlint~dev.json
[304] https://repo.packagist.org/p2/seld/phar-utils~dev.json
Downloading https://repo.packagist.org/p2/composer/package-versions-deprecated~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/cache~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/deprecations~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/event-manager~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/common~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/collections~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/console~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/process~dev.json
[304] https://repo.packagist.org/p2/react/promise~dev.json
[304] https://repo.packagist.org/p2/seld/cli-prompt~dev.json
Downloading https://repo.packagist.org/p2/illuminate/contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/macroable~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/inflector~dev.json if modified
Downloading https://repo.packagist.org/p2/nesbot/carbon~dev.json if modified
Downloading https://repo.packagist.org/p2/voku/portable-ascii~dev.json if modified
Downloading https://repo.packagist.org/p2/dragonmantank/cron-expression~dev.json if modified
[304] https://repo.packagist.org/p2/composer/package-versions-deprecated~dev.json
[304] https://repo.packagist.org/p2/doctrine/cache~dev.json
[304] https://repo.packagist.org/p2/doctrine/deprecations~dev.json
[304] https://repo.packagist.org/p2/doctrine/event-manager~dev.json
[304] https://repo.packagist.org/p2/doctrine/common~dev.json
[304] https://repo.packagist.org/p2/illuminate/collections~dev.json
Downloading https://repo.packagist.org/p2/egulias/email-validator~dev.json if modified
Downloading https://repo.packagist.org/p2/league/commonmark~dev.json if modified
Downloading https://repo.packagist.org/p2/league/flysystem~dev.json if modified
Downloading https://repo.packagist.org/p2/monolog/monolog~dev.json if modified
Downloading https://repo.packagist.org/p2/opis/closure~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/container~dev.json if modified
[304] https://repo.packagist.org/p2/illuminate/contracts~dev.json
[304] https://repo.packagist.org/p2/illuminate/macroable~dev.json
[304] https://repo.packagist.org/p2/doctrine/inflector~dev.json
[304] https://repo.packagist.org/p2/nesbot/carbon~dev.json
[304] https://repo.packagist.org/p2/voku/portable-ascii~dev.json
[304] https://repo.packagist.org/p2/dragonmantank/cron-expression~dev.json
Downloading https://repo.packagist.org/p2/psr/simple-cache~dev.json if modified
Downloading https://repo.packagist.org/p2/ramsey/uuid~dev.json if modified
Downloading https://repo.packagist.org/p2/swiftmailer/swiftmailer~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-foundation~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/http-kernel~dev.json if modified
[304] https://repo.packagist.org/p2/egulias/email-validator~dev.json
[304] https://repo.packagist.org/p2/league/commonmark~dev.json
[304] https://repo.packagist.org/p2/league/flysystem~dev.json
[304] https://repo.packagist.org/p2/monolog/monolog~dev.json
[304] https://repo.packagist.org/p2/opis/closure~dev.json
[304] https://repo.packagist.org/p2/psr/container~dev.json
Downloading https://repo.packagist.org/p2/symfony/mime~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/routing~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/var-dumper~dev.json if modified
Downloading https://repo.packagist.org/p2/tijsverkoyen/css-to-inline-styles~dev.json if modified
Downloading https://repo.packagist.org/p2/vlucas/phpdotenv~dev.json if modified
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-common~dev.json if modified
[304] https://repo.packagist.org/p2/psr/simple-cache~dev.json
[304] https://repo.packagist.org/p2/ramsey/uuid~dev.json
[304] https://repo.packagist.org/p2/swiftmailer/swiftmailer~dev.json
[304] https://repo.packagist.org/p2/symfony/error-handler~dev.json
[304] https://repo.packagist.org/p2/symfony/http-foundation~dev.json
[304] https://repo.packagist.org/p2/symfony/http-kernel~dev.json
Downloading https://repo.packagist.org/p2/illuminate/container~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/events~dev.json if modified
Downloading https://repo.packagist.org/p2/hamcrest/hamcrest-php~dev.json if modified
Downloading https://repo.packagist.org/p2/orchestra/testbench-core~dev.json if modified
Downloading https://repo.packagist.org/p2/spatie/laravel-ray~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/instantiator~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/mime~dev.json
[304] https://repo.packagist.org/p2/symfony/routing~dev.json
[304] https://repo.packagist.org/p2/symfony/var-dumper~dev.json
[304] https://repo.packagist.org/p2/tijsverkoyen/css-to-inline-styles~dev.json
[304] https://repo.packagist.org/p2/vlucas/phpdotenv~dev.json
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-common~dev.json
Downloading https://repo.packagist.org/p2/myclabs/deep-copy~dev.json if modified
Downloading https://repo.packagist.org/p2/phar-io/manifest~dev.json if modified
Downloading https://repo.packagist.org/p2/phar-io/version~dev.json if modified
Downloading https://repo.packagist.org/p2/phpspec/prophecy~dev.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-code-coverage~dev.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-file-iterator~dev.json if modified
[304] https://repo.packagist.org/p2/illuminate/container~dev.json
[304] https://repo.packagist.org/p2/illuminate/events~dev.json
[304] https://repo.packagist.org/p2/hamcrest/hamcrest-php~dev.json
[304] https://repo.packagist.org/p2/orchestra/testbench-core~dev.json
[304] https://repo.packagist.org/p2/spatie/laravel-ray~dev.json
[304] https://repo.packagist.org/p2/doctrine/instantiator~dev.json
Downloading https://repo.packagist.org/p2/phpunit/php-invoker~dev.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-text-template~dev.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-timer~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/cli-parser~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/code-unit~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/comparator~dev.json if modified
[304] https://repo.packagist.org/p2/myclabs/deep-copy~dev.json
[304] https://repo.packagist.org/p2/phar-io/manifest~dev.json
[304] https://repo.packagist.org/p2/phar-io/version~dev.json
[304] https://repo.packagist.org/p2/phpspec/prophecy~dev.json
[304] https://repo.packagist.org/p2/phpunit/php-code-coverage~dev.json
[304] https://repo.packagist.org/p2/phpunit/php-file-iterator~dev.json
Downloading https://repo.packagist.org/p2/sebastian/diff~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/environment~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/exporter~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/global-state~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/object-enumerator~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/resource-operations~dev.json if modified
[304] https://repo.packagist.org/p2/phpunit/php-invoker~dev.json
[304] https://repo.packagist.org/p2/phpunit/php-text-template~dev.json
[304] https://repo.packagist.org/p2/phpunit/php-timer~dev.json
[304] https://repo.packagist.org/p2/sebastian/cli-parser~dev.json
[304] https://repo.packagist.org/p2/sebastian/code-unit~dev.json
[304] https://repo.packagist.org/p2/sebastian/comparator~dev.json
Downloading https://repo.packagist.org/p2/sebastian/type~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/version~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-access~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/serializer~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/yaml~dev.json if modified
Downloading https://repo.packagist.org/p2/psr/cache~dev.json if modified
[304] https://repo.packagist.org/p2/sebastian/diff~dev.json
[304] https://repo.packagist.org/p2/sebastian/environment~dev.json
[304] https://repo.packagist.org/p2/sebastian/exporter~dev.json
[304] https://repo.packagist.org/p2/sebastian/global-state~dev.json
[304] https://repo.packagist.org/p2/sebastian/object-enumerator~dev.json
[304] https://repo.packagist.org/p2/sebastian/resource-operations~dev.json
[304] https://repo.packagist.org/p2/sebastian/type~dev.json
[304] https://repo.packagist.org/p2/sebastian/version~dev.json
[304] https://repo.packagist.org/p2/symfony/property-access~dev.json
[304] https://repo.packagist.org/p2/symfony/serializer~dev.json
[304] https://repo.packagist.org/p2/symfony/yaml~dev.json
[304] https://repo.packagist.org/p2/psr/cache~dev.json
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-justinrainbow~json-schema.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-mbstring.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-mbstring.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php73.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-php73.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php80.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-php80.json if modified
Reading /Users/user/.composer/cache/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 /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~string.json from cache
Downloading https://repo.packagist.org/p2/symfony/string.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/contracts.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~debug.json from cache
Downloading https://repo.packagist.org/p2/symfony/debug.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-ctype.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-ctype.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~inflector.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~collections.json from cache
Downloading https://repo.packagist.org/p2/doctrine/collections.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~lexer.json from cache
Downloading https://repo.packagist.org/p2/doctrine/lexer.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~annotations.json from cache
Downloading https://repo.packagist.org/p2/doctrine/annotations.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~reflection.json from cache
Downloading https://repo.packagist.org/p2/doctrine/reflection.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~persistence.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~translation.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-webmozart~assert.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-idn.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-league~mime-type-detection.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-brick~math.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ramsey~collection.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-egulias~email-validator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-iconv.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~var-dumper.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~deprecation-contracts.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~error-handler.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~event-dispatcher.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-client-contracts.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-foundation.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~css-selector.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-graham-campbell~result-type.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpoption~phpoption.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~bus.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-fakerphp~faker.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-fzaninotto~faker.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~contracts.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~database.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~queue.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~backtrace.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~ray.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~stopwatch.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~mail-mime-parser.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phar-io~version.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-docblock.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~comparator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~recursion-context.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~instantiator.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~code-unit-reverse-lookup.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~complexity.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~lines-of-code.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-theseer~tokenizer.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-token-stream.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~diff.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~exporter.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~object-reflector.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~property-info.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~inflector.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-marc-mabe~php-enum.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-icecave~parity.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-justinrainbow~json-schema~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-mbstring~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php73~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php80~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~service-contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~string~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~debug~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-ctype~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~inflector~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~collections~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~lexer~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~annotations~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~reflection~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~persistence~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~translation~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-webmozart~assert~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-idn~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-league~mime-type-detection~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-brick~math~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ramsey~collection~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-egulias~email-validator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-iconv~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~var-dumper~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~deprecation-contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~error-handler~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~event-dispatcher~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-client-contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~http-foundation~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~css-selector~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-graham-campbell~result-type~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpoption~phpoption~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~bus~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-fakerphp~faker~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-fzaninotto~faker~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~database~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~queue~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~backtrace~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~ray~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~stopwatch~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~mail-mime-parser~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phar-io~version~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-docblock~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~comparator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~recursion-context~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-doctrine~instantiator~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~code-unit-reverse-lookup~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~complexity~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~lines-of-code~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-theseer~tokenizer~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpunit~php-token-stream~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~diff~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~exporter~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~object-reflector~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~property-info~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~inflector~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-marc-mabe~php-enum~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-icecave~parity~dev.json from cache
[304] https://repo.packagist.org/p2/symfony/polyfill-mbstring.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php73.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php80.json
[304] https://repo.packagist.org/p2/symfony/service-contracts.json
Downloading https://repo.packagist.org/p2/doctrine/persistence.json if modified
Downloading https://repo.packagist.org/p2/symfony/translation.json if modified
Downloading https://repo.packagist.org/p2/webmozart/assert.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-idn.json if modified
[304] https://repo.packagist.org/p2/symfony/string.json
[304] https://repo.packagist.org/p2/symfony/contracts.json
[304] https://repo.packagist.org/p2/symfony/debug.json
[304] https://repo.packagist.org/p2/symfony/polyfill-ctype.json
[304] https://repo.packagist.org/p2/doctrine/collections.json
[304] https://repo.packagist.org/p2/doctrine/lexer.json
[304] https://repo.packagist.org/p2/doctrine/annotations.json
[304] https://repo.packagist.org/p2/doctrine/reflection.json
Downloading https://repo.packagist.org/p2/league/mime-type-detection.json if modified
Downloading https://repo.packagist.org/p2/brick/math.json if modified
Downloading https://repo.packagist.org/p2/ramsey/collection.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-iconv.json if modified
Downloading https://repo.packagist.org/p2/symfony/deprecation-contracts.json if modified
Downloading https://repo.packagist.org/p2/symfony/event-dispatcher.json if modified
Downloading https://repo.packagist.org/p2/symfony/http-client-contracts.json if modified
Downloading https://repo.packagist.org/p2/symfony/css-selector.json if modified
[304] https://repo.packagist.org/p2/doctrine/persistence.json
[304] https://repo.packagist.org/p2/symfony/translation.json
[304] https://repo.packagist.org/p2/webmozart/assert.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-idn.json
Downloading https://repo.packagist.org/p2/graham-campbell/result-type.json if modified
Downloading https://repo.packagist.org/p2/phpoption/phpoption.json if modified
Downloading https://repo.packagist.org/p2/illuminate/bus.json if modified
Downloading https://repo.packagist.org/p2/fakerphp/faker.json if modified
[304] https://repo.packagist.org/p2/league/mime-type-detection.json
[304] https://repo.packagist.org/p2/brick/math.json
[304] https://repo.packagist.org/p2/ramsey/collection.json
[304] https://repo.packagist.org/p2/symfony/polyfill-iconv.json
[304] https://repo.packagist.org/p2/symfony/deprecation-contracts.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher.json
[304] https://repo.packagist.org/p2/symfony/http-client-contracts.json
[304] https://repo.packagist.org/p2/symfony/css-selector.json
Downloading https://repo.packagist.org/p2/fzaninotto/faker.json if modified
Downloading https://repo.packagist.org/p2/illuminate/database.json if modified
Downloading https://repo.packagist.org/p2/illuminate/queue.json if modified
Downloading https://repo.packagist.org/p2/spatie/backtrace.json if modified
Downloading https://repo.packagist.org/p2/spatie/ray.json if modified
Downloading https://repo.packagist.org/p2/symfony/stopwatch.json if modified
Downloading https://repo.packagist.org/p2/zbateson/mail-mime-parser.json if modified
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-docblock.json if modified
[304] https://repo.packagist.org/p2/graham-campbell/result-type.json
[304] https://repo.packagist.org/p2/phpoption/phpoption.json
[304] https://repo.packagist.org/p2/illuminate/bus.json
[304] https://repo.packagist.org/p2/fakerphp/faker.json
Downloading https://repo.packagist.org/p2/sebastian/recursion-context.json if modified
Downloading https://repo.packagist.org/p2/sebastian/code-unit-reverse-lookup.json if modified
Downloading https://repo.packagist.org/p2/sebastian/complexity.json if modified
Downloading https://repo.packagist.org/p2/sebastian/lines-of-code.json if modified
[304] https://repo.packagist.org/p2/fzaninotto/faker.json
[304] https://repo.packagist.org/p2/illuminate/database.json
[304] https://repo.packagist.org/p2/illuminate/queue.json
[304] https://repo.packagist.org/p2/spatie/backtrace.json
[304] https://repo.packagist.org/p2/spatie/ray.json
[304] https://repo.packagist.org/p2/symfony/stopwatch.json
[304] https://repo.packagist.org/p2/zbateson/mail-mime-parser.json
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-docblock.json
Downloading https://repo.packagist.org/p2/theseer/tokenizer.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-token-stream.json if modified
Downloading https://repo.packagist.org/p2/sebastian/object-reflector.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-info.json if modified
Downloading https://repo.packagist.org/p2/symfony/inflector.json if modified
Downloading https://repo.packagist.org/p2/marc-mabe/php-enum.json if modified
Downloading https://repo.packagist.org/p2/icecave/parity.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-mbstring~dev.json if modified
[304] https://repo.packagist.org/p2/sebastian/recursion-context.json
[304] https://repo.packagist.org/p2/sebastian/code-unit-reverse-lookup.json
[304] https://repo.packagist.org/p2/sebastian/complexity.json
[304] https://repo.packagist.org/p2/sebastian/lines-of-code.json
Downloading https://repo.packagist.org/p2/symfony/polyfill-php73~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-php80~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/service-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/string~dev.json if modified
[304] https://repo.packagist.org/p2/theseer/tokenizer.json
[304] https://repo.packagist.org/p2/phpunit/php-token-stream.json
[304] https://repo.packagist.org/p2/sebastian/object-reflector.json
Downloading https://repo.packagist.org/p2/symfony/contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/debug~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-ctype~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/property-info.json
[304] https://repo.packagist.org/p2/symfony/inflector.json
[304] https://repo.packagist.org/p2/marc-mabe/php-enum.json
[304] https://repo.packagist.org/p2/icecave/parity.json
[304] https://repo.packagist.org/p2/symfony/polyfill-mbstring~dev.json
Downloading https://repo.packagist.org/p2/doctrine/collections~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/lexer~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/annotations~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/reflection~dev.json if modified
Downloading https://repo.packagist.org/p2/doctrine/persistence~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/polyfill-php73~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php80~dev.json
[304] https://repo.packagist.org/p2/symfony/service-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/string~dev.json
[304] https://repo.packagist.org/p2/symfony/contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/debug~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-ctype~dev.json
Downloading https://repo.packagist.org/p2/symfony/translation~dev.json if modified
Downloading https://repo.packagist.org/p2/webmozart/assert~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-idn~dev.json if modified
Downloading https://repo.packagist.org/p2/league/mime-type-detection~dev.json if modified
Downloading https://repo.packagist.org/p2/brick/math~dev.json if modified
Downloading https://repo.packagist.org/p2/ramsey/collection~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-iconv~dev.json if modified
[304] https://repo.packagist.org/p2/doctrine/collections~dev.json
[304] https://repo.packagist.org/p2/doctrine/lexer~dev.json
[304] https://repo.packagist.org/p2/doctrine/annotations~dev.json
[304] https://repo.packagist.org/p2/doctrine/reflection~dev.json
[304] https://repo.packagist.org/p2/doctrine/persistence~dev.json
Downloading https://repo.packagist.org/p2/symfony/deprecation-contracts~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-client-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/css-selector~dev.json if modified
Downloading https://repo.packagist.org/p2/graham-campbell/result-type~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/translation~dev.json
[304] https://repo.packagist.org/p2/webmozart/assert~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-idn~dev.json
[304] https://repo.packagist.org/p2/league/mime-type-detection~dev.json
[304] https://repo.packagist.org/p2/brick/math~dev.json
[304] https://repo.packagist.org/p2/ramsey/collection~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-iconv~dev.json
Downloading https://repo.packagist.org/p2/phpoption/phpoption~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/bus~dev.json if modified
Downloading https://repo.packagist.org/p2/fakerphp/faker~dev.json if modified
Downloading https://repo.packagist.org/p2/fzaninotto/faker~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/database~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/queue~dev.json if modified
Downloading https://repo.packagist.org/p2/spatie/backtrace~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/deprecation-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher~dev.json
[304] https://repo.packagist.org/p2/symfony/http-client-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/css-selector~dev.json
[304] https://repo.packagist.org/p2/graham-campbell/result-type~dev.json
Downloading https://repo.packagist.org/p2/spatie/ray~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/stopwatch~dev.json if modified
Downloading https://repo.packagist.org/p2/zbateson/mail-mime-parser~dev.json if modified
Downloading https://repo.packagist.org/p2/phpdocumentor/reflection-docblock~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/recursion-context~dev.json if modified
[304] https://repo.packagist.org/p2/phpoption/phpoption~dev.json
[304] https://repo.packagist.org/p2/illuminate/bus~dev.json
[304] https://repo.packagist.org/p2/fakerphp/faker~dev.json
[304] https://repo.packagist.org/p2/fzaninotto/faker~dev.json
[304] https://repo.packagist.org/p2/illuminate/database~dev.json
[304] https://repo.packagist.org/p2/illuminate/queue~dev.json
[304] https://repo.packagist.org/p2/spatie/backtrace~dev.json
Downloading https://repo.packagist.org/p2/sebastian/code-unit-reverse-lookup~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/complexity~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/lines-of-code~dev.json if modified
Downloading https://repo.packagist.org/p2/theseer/tokenizer~dev.json if modified
Downloading https://repo.packagist.org/p2/phpunit/php-token-stream~dev.json if modified
Downloading https://repo.packagist.org/p2/sebastian/object-reflector~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/property-info~dev.json if modified
[304] https://repo.packagist.org/p2/spatie/ray~dev.json
[304] https://repo.packagist.org/p2/symfony/stopwatch~dev.json
[304] https://repo.packagist.org/p2/zbateson/mail-mime-parser~dev.json
[304] https://repo.packagist.org/p2/phpdocumentor/reflection-docblock~dev.json
[304] https://repo.packagist.org/p2/sebastian/recursion-context~dev.json
Downloading https://repo.packagist.org/p2/symfony/inflector~dev.json if modified
Downloading https://repo.packagist.org/p2/marc-mabe/php-enum~dev.json if modified
Downloading https://repo.packagist.org/p2/icecave/parity~dev.json if modified
[304] https://repo.packagist.org/p2/sebastian/code-unit-reverse-lookup~dev.json
[304] https://repo.packagist.org/p2/sebastian/complexity~dev.json
[304] https://repo.packagist.org/p2/sebastian/lines-of-code~dev.json
[304] https://repo.packagist.org/p2/theseer/tokenizer~dev.json
[304] https://repo.packagist.org/p2/phpunit/php-token-stream~dev.json
[304] https://repo.packagist.org/p2/sebastian/object-reflector~dev.json
[304] https://repo.packagist.org/p2/symfony/property-info~dev.json
[304] https://repo.packagist.org/p2/symfony/inflector~dev.json
[304] https://repo.packagist.org/p2/marc-mabe/php-enum~dev.json
[304] https://repo.packagist.org/p2/icecave/parity~dev.json
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php72.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-php72.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~mime.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~diff.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~exporter.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-grapheme.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-normalizer.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~translation-contracts.json from cache
Downloading https://repo.packagist.org/p2/symfony/translation-contracts.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php70.json from cache
Downloading https://repo.packagist.org/p2/symfony/polyfill-php70.json if modified
Reading /Users/user/.composer/cache/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 /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpoption~phpoption.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~pipeline.json from cache
Downloading https://repo.packagist.org/p2/illuminate/pipeline.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~container.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~contracts.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~database.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ramsey~uuid.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-opis~closure.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~macroable.json from cache
Downloading https://repo.packagist.org/p2/spatie/macroable.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~stopwatch.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~var-dumper.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~service-contracts.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp~psr7.json from cache
Downloading https://repo.packagist.org/p2/guzzlehttp/psr7.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~mb-wrapper.json from cache
Downloading https://repo.packagist.org/p2/zbateson/mb-wrapper.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~stream-decorators.json from cache
Downloading https://repo.packagist.org/p2/zbateson/stream-decorators.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-webmozart~assert.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-dflydev~markdown.json from cache
Downloading https://repo.packagist.org/p2/dflydev/markdown.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-icecave~repr.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php72~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~mime~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~diff~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-sebastian~exporter~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-grapheme~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-intl-normalizer~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~translation-contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~polyfill-php70~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~event-dispatcher-contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpoption~phpoption~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~pipeline~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~container~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-illuminate~database~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ramsey~uuid~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-opis~closure~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-spatie~macroable~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~stopwatch~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~var-dumper~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-symfony~service-contracts~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-guzzlehttp~psr7~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~mb-wrapper~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~stream-decorators~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-webmozart~assert~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-phpdocumentor~reflection-common~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-dflydev~markdown~dev.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-icecave~repr~dev.json from cache
[304] https://repo.packagist.org/p2/symfony/polyfill-php72.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer.json
Downloading https://repo.packagist.org/p2/icecave/repr.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-php72~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/translation-contracts.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php70.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher-contracts.json
[304] https://repo.packagist.org/p2/illuminate/pipeline.json
[304] https://repo.packagist.org/p2/spatie/macroable.json
[304] https://repo.packagist.org/p2/guzzlehttp/psr7.json
[304] https://repo.packagist.org/p2/zbateson/mb-wrapper.json
[304] https://repo.packagist.org/p2/zbateson/stream-decorators.json
[304] https://repo.packagist.org/p2/dflydev/markdown.json
Downloading https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/translation-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/polyfill-php70~dev.json if modified
Downloading https://repo.packagist.org/p2/symfony/event-dispatcher-contracts~dev.json if modified
Downloading https://repo.packagist.org/p2/illuminate/pipeline~dev.json if modified
Downloading https://repo.packagist.org/p2/spatie/macroable~dev.json if modified
Downloading https://repo.packagist.org/p2/guzzlehttp/psr7~dev.json if modified
Downloading https://repo.packagist.org/p2/zbateson/mb-wrapper~dev.json if modified
Downloading https://repo.packagist.org/p2/zbateson/stream-decorators~dev.json if modified
[304] https://repo.packagist.org/p2/icecave/repr.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php72~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-grapheme~dev.json
Downloading https://repo.packagist.org/p2/dflydev/markdown~dev.json if modified
Downloading https://repo.packagist.org/p2/icecave/repr~dev.json if modified
[304] https://repo.packagist.org/p2/symfony/polyfill-intl-normalizer~dev.json
[304] https://repo.packagist.org/p2/symfony/translation-contracts~dev.json
[304] https://repo.packagist.org/p2/symfony/polyfill-php70~dev.json
[304] https://repo.packagist.org/p2/symfony/event-dispatcher-contracts~dev.json
[304] https://repo.packagist.org/p2/illuminate/pipeline~dev.json
[304] https://repo.packagist.org/p2/spatie/macroable~dev.json
[304] https://repo.packagist.org/p2/guzzlehttp/psr7~dev.json
[304] https://repo.packagist.org/p2/zbateson/mb-wrapper~dev.json
[304] https://repo.packagist.org/p2/zbateson/stream-decorators~dev.json
[304] https://repo.packagist.org/p2/dflydev/markdown~dev.json
[304] https://repo.packagist.org/p2/icecave/repr~dev.json
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-paragonie~random-compat.json from cache
Downloading https://repo.packagist.org/p2/paragonie/random_compat.json if modified
Reading /Users/user/.composer/cache/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 /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~http-message.json from cache
Downloading https://repo.packagist.org/p2/psr/http-message.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ralouphie~getallheaders.json from cache
Downloading https://repo.packagist.org/p2/ralouphie/getallheaders.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~mb-wrapper.json from cache
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-paragonie~random-compat~dev.json from cache
Downloading https://repo.packagist.org/p2/paragonie/random_compat~dev.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~event-dispatcher~dev.json from cache
Downloading https://repo.packagist.org/p2/psr/event-dispatcher~dev.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-psr~http-message~dev.json from cache
Downloading https://repo.packagist.org/p2/psr/http-message~dev.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-ralouphie~getallheaders~dev.json from cache
Downloading https://repo.packagist.org/p2/ralouphie/getallheaders~dev.json if modified
Reading /Users/user/.composer/cache/repo/https---repo.packagist.org/provider-zbateson~mb-wrapper~dev.json from cache
[304] https://repo.packagist.org/p2/paragonie/random_compat.json
[304] https://repo.packagist.org/p2/psr/event-dispatcher.json
[304] https://repo.packagist.org/p2/psr/http-message.json
[304] https://repo.packagist.org/p2/ralouphie/getallheaders.json
[304] https://repo.packagist.org/p2/paragonie/random_compat~dev.json
[304] https://repo.packagist.org/p2/psr/event-dispatcher~dev.json
[304] https://repo.packagist.org/p2/psr/http-message~dev.json
[304] https://repo.packagist.org/p2/ralouphie/getallheaders~dev.json
> pre-pool-create: Symfony\Flex\Flex->truncatePackages
Updating dependencies
Generating rules
Resolving dependencies through SAT
Looking at all rules.
Something's changed, looking at all rules again (pass #5476)
Dependency resolution completed in 335.834 seconds
Analyzed 6336 packages to resolve dependencies
Analyzed 142116 rules to resolve dependencies
Generating rules
Resolving dependencies through SAT
Looking at all rules.

Dependency resolution completed in 0.000 seconds
Lock file operations: 99 installs, 0 updates, 0 removals
Installs: barryvdh/reflection-docblock:v2.0.6, symfony/polyfill-php80:v1.17.0, symfony/process:v5.1.0, symfony/finder:v5.1.0, symfony/filesystem:v2.7.0, symfony/polyfill-mbstring:v1.17.0, symfony/polyfill-intl-normalizer:v1.0.0, symfony/polyfill-intl-grapheme:v1.0.0, symfony/polyfill-ctype:v1.17.0, symfony/string:v5.1.0, symfony/service-contracts:v1.1.1, symfony/polyfill-php73:v1.9.0, symfony/console:v5.1.0, seld/phar-utils:1.0.0, seld/jsonlint:1.4.0, psr/log:1.0.1, justinrainbow/json-schema:3.0.0, composer/xdebug-handler:1.1.0, composer/spdx-licenses:1.2.0, composer/semver:1.0.0, composer/ca-bundle:1.0.0, composer/composer:1.10.0, dflydev/markdown:v1.0.0, doctrine/lexer:v1.0.1, doctrine/annotations:v1.0, doctrine/cache:v1.0, doctrine/collections:v1.0, doctrine/inflector:1.4.0, doctrine/common:v2.7.1, doctrine/dbal:v2.6.0, dragonmantank/cron-expression:v3.0.0, hamcrest/hamcrest-php:v2.0.0, league/commonmark:1.3.0, league/flysystem:1.0.34, monolog/monolog:2.0.0, myclabs/deep-copy:1.9.1, symfony/translation-contracts:v2.0.0, symfony/translation:v5.0.0, nesbot/carbon:2.27.0, nikic/php-parser:v4.7.0, opis/closure:3.5.3, sebastian/version:2.0.1, sebastian/type:1.1.3, sebastian/resource-operations:2.0.1, sebastian/recursion-context:3.0.0, sebastian/object-reflector:1.1.1, sebastian/object-enumerator:3.0.3, sebastian/global-state:3.0.0, sebastian/exporter:3.1.1, sebastian/environment:4.2.2, sebastian/diff:3.0.2, sebastian/comparator:3.0.2, phpunit/php-timer:2.1.2, phpunit/php-text-template:1.2.1, phpunit/php-file-iterator:2.0.2, theseer/tokenizer:1.1.3, sebastian/code-unit-reverse-lookup:1.0.1, phpunit/php-token-stream:3.1.0, phpunit/php-code-coverage:7.0.7, doctrine/instantiator:1.2.0, phpdocumentor/reflection-docblock:2.0.0, phpspec/prophecy:1.8.1, phar-io/version:2.0.1, phar-io/manifest:1.0.3, phpunit/phpunit:8.5.0, fzaninotto/faker:v1.9.1, orchestra/testbench-core:v6.0.0, mockery/mockery:1.4.0, voku/portable-ascii:1.4.8, phpoption/phpoption:1.7.4, graham-campbell/result-type:v1.0.1, vlucas/phpdotenv:v5.0.0, symfony/css-selector:v2.7.0, tijsverkoyen/css-to-inline-styles:2.2.2, symfony/var-dumper:v5.1.0, symfony/deprecation-contracts:v2.1.0, symfony/routing:v5.1.0, symfony/polyfill-php72:v1.9.0, symfony/polyfill-intl-idn:v1.10.0, symfony/mime:v5.1.0, symfony/http-foundation:v5.1.0, psr/event-dispatcher:1.0.0, symfony/event-dispatcher-contracts:v2.0.0, symfony/event-dispatcher:v5.0.0, symfony/error-handler:v5.1.0, symfony/http-kernel:v5.1.0, egulias/email-validator:2.1.10, swiftmailer/swiftmailer:v6.0.0, ramsey/collection:1.0.0, brick/math:0.8.0, ramsey/uuid:4.0.0, psr/simple-cache:1.0.0, psr/container:1.0.0, laravel/framework:v8.0.0, orchestra/testbench:v6.0.0, phpdocumentor/reflection-common:2.0.0, phpdocumentor/type-resolver:1.1.0, symfony/yaml:v4.4.0, spatie/phpunit-snapshot-assertions:3.0.0
  - Locking barryvdh/reflection-docblock (v2.0.6)
  - Locking brick/math (0.8.0)
  - Locking composer/ca-bundle (1.0.0)
  - Locking composer/composer (1.10.0)
  - Locking composer/semver (1.0.0)
  - Locking composer/spdx-licenses (1.2.0)
  - Locking composer/xdebug-handler (1.1.0)
  - Locking dflydev/markdown (v1.0.0)
  - Locking doctrine/annotations (v1.0)
  - Locking doctrine/cache (v1.0)
  - Locking doctrine/collections (v1.0)
  - Locking doctrine/common (v2.7.1)
  - Locking doctrine/dbal (v2.6.0)
  - Locking doctrine/inflector (1.4.0)
  - Locking doctrine/instantiator (1.2.0)
  - Locking doctrine/lexer (v1.0.1)
  - Locking dragonmantank/cron-expression (v3.0.0)
  - Locking egulias/email-validator (2.1.10)
  - Locking fzaninotto/faker (v1.9.1)
  - Locking graham-campbell/result-type (v1.0.1)
  - Locking hamcrest/hamcrest-php (v2.0.0)
  - Locking justinrainbow/json-schema (3.0.0)
  - Locking laravel/framework (v8.0.0)
  - Locking league/commonmark (1.3.0)
  - Locking league/flysystem (1.0.34)
  - Locking mockery/mockery (1.4.0)
  - Locking monolog/monolog (2.0.0)
  - Locking myclabs/deep-copy (1.9.1)
  - Locking nesbot/carbon (2.27.0)
  - Locking nikic/php-parser (v4.7.0)
  - Locking opis/closure (3.5.3)
  - Locking orchestra/testbench (v6.0.0)
  - Locking orchestra/testbench-core (v6.0.0)
  - Locking phar-io/manifest (1.0.3)
  - Locking phar-io/version (2.0.1)
  - Locking phpdocumentor/reflection-common (2.0.0)
  - Locking phpdocumentor/reflection-docblock (2.0.0)
  - Locking phpdocumentor/type-resolver (1.1.0)
  - Locking phpoption/phpoption (1.7.4)
  - Locking phpspec/prophecy (1.8.1)
  - Locking phpunit/php-code-coverage (7.0.7)
  - Locking phpunit/php-file-iterator (2.0.2)
  - Locking phpunit/php-text-template (1.2.1)
  - Locking phpunit/php-timer (2.1.2)
  - Locking phpunit/php-token-stream (3.1.0)
  - Locking phpunit/phpunit (8.5.0)
  - Locking psr/container (1.0.0)
  - Locking psr/event-dispatcher (1.0.0)
  - Locking psr/log (1.0.1)
  - Locking psr/simple-cache (1.0.0)
  - Locking ramsey/collection (1.0.0)
  - Locking ramsey/uuid (4.0.0)
  - Locking sebastian/code-unit-reverse-lookup (1.0.1)
  - Locking sebastian/comparator (3.0.2)
  - Locking sebastian/diff (3.0.2)
  - Locking sebastian/environment (4.2.2)
  - Locking sebastian/exporter (3.1.1)
  - Locking sebastian/global-state (3.0.0)
  - Locking sebastian/object-enumerator (3.0.3)
  - Locking sebastian/object-reflector (1.1.1)
  - Locking sebastian/recursion-context (3.0.0)
  - Locking sebastian/resource-operations (2.0.1)
  - Locking sebastian/type (1.1.3)
  - Locking sebastian/version (2.0.1)
  - Locking seld/jsonlint (1.4.0)
  - Locking seld/phar-utils (1.0.0)
  - Locking spatie/phpunit-snapshot-assertions (3.0.0)
  - Locking swiftmailer/swiftmailer (v6.0.0)
  - Locking symfony/console (v5.1.0)
  - Locking symfony/css-selector (v2.7.0)
  - Locking symfony/deprecation-contracts (v2.1.0)
  - Locking symfony/error-handler (v5.1.0)
  - Locking symfony/event-dispatcher (v5.0.0)
  - Locking symfony/event-dispatcher-contracts (v2.0.0)
  - Locking symfony/filesystem (v2.7.0)
  - Locking symfony/finder (v5.1.0)
  - Locking symfony/http-foundation (v5.1.0)
  - Locking symfony/http-kernel (v5.1.0)
  - Locking symfony/mime (v5.1.0)
  - Locking symfony/polyfill-ctype (v1.17.0)
  - Locking symfony/polyfill-intl-grapheme (v1.0.0)
  - Locking symfony/polyfill-intl-idn (v1.10.0)
  - Locking symfony/polyfill-intl-normalizer (v1.0.0)
  - Locking symfony/polyfill-mbstring (v1.17.0)
  - Locking symfony/polyfill-php72 (v1.9.0)
  - Locking symfony/polyfill-php73 (v1.9.0)
  - Locking symfony/polyfill-php80 (v1.17.0)
  - Locking symfony/process (v5.1.0)
  - Locking symfony/routing (v5.1.0)
  - Locking symfony/service-contracts (v1.1.1)
  - Locking symfony/string (v5.1.0)
  - Locking symfony/translation (v5.0.0)
  - Locking symfony/translation-contracts (v2.0.0)
  - Locking symfony/var-dumper (v5.1.0)
  - Locking symfony/yaml (v4.4.0)
  - Locking theseer/tokenizer (1.1.3)
  - Locking tijsverkoyen/css-to-inline-styles (2.2.2)
  - Locking vlucas/phpdotenv (v5.0.0)
  - Locking voku/portable-ascii (1.4.8)
Writing lock file
Installing dependencies from lock file (including require-dev)
Reading ./composer.lock (/Users/user/src/laravel-ide-helper/composer.lock)
Package operations: 99 installs, 0 updates, 0 removals
Installs: barryvdh/reflection-docblock:v2.0.6, symfony/polyfill-php80:v1.17.0, symfony/process:v5.1.0, symfony/finder:v5.1.0, symfony/filesystem:v2.7.0, symfony/polyfill-mbstring:v1.17.0, symfony/polyfill-intl-normalizer:v1.0.0, symfony/polyfill-intl-grapheme:v1.0.0, symfony/polyfill-ctype:v1.17.0, symfony/string:v5.1.0, symfony/service-contracts:v1.1.1, symfony/polyfill-php73:v1.9.0, symfony/console:v5.1.0, seld/phar-utils:1.0.0, seld/jsonlint:1.4.0, psr/log:1.0.1, justinrainbow/json-schema:3.0.0, composer/xdebug-handler:1.1.0, composer/spdx-licenses:1.2.0, composer/semver:1.0.0, composer/ca-bundle:1.0.0, composer/composer:1.10.0, dflydev/markdown:v1.0.0, doctrine/lexer:v1.0.1, doctrine/annotations:v1.0, doctrine/cache:v1.0, doctrine/collections:v1.0, doctrine/inflector:1.4.0, doctrine/common:v2.7.1, doctrine/dbal:v2.6.0, dragonmantank/cron-expression:v3.0.0, hamcrest/hamcrest-php:v2.0.0, league/commonmark:1.3.0, league/flysystem:1.0.34, monolog/monolog:2.0.0, myclabs/deep-copy:1.9.1, symfony/translation-contracts:v2.0.0, symfony/translation:v5.0.0, nesbot/carbon:2.27.0, nikic/php-parser:v4.7.0, opis/closure:3.5.3, sebastian/version:2.0.1, sebastian/type:1.1.3, sebastian/resource-operations:2.0.1, sebastian/recursion-context:3.0.0, sebastian/object-reflector:1.1.1, sebastian/object-enumerator:3.0.3, sebastian/global-state:3.0.0, sebastian/exporter:3.1.1, sebastian/environment:4.2.2, sebastian/diff:3.0.2, sebastian/comparator:3.0.2, phpunit/php-timer:2.1.2, phpunit/php-text-template:1.2.1, phpunit/php-file-iterator:2.0.2, theseer/tokenizer:1.1.3, sebastian/code-unit-reverse-lookup:1.0.1, phpunit/php-token-stream:3.1.0, phpunit/php-code-coverage:7.0.7, phpdocumentor/reflection-docblock:2.0.0, doctrine/instantiator:1.2.0, phpspec/prophecy:1.8.1, phar-io/version:2.0.1, phar-io/manifest:1.0.3, phpunit/phpunit:8.5.0, fzaninotto/faker:v1.9.1, orchestra/testbench-core:v6.0.0, mockery/mockery:1.4.0, voku/portable-ascii:1.4.8, phpoption/phpoption:1.7.4, graham-campbell/result-type:v1.0.1, vlucas/phpdotenv:v5.0.0, symfony/css-selector:v2.7.0, tijsverkoyen/css-to-inline-styles:2.2.2, symfony/var-dumper:v5.1.0, symfony/deprecation-contracts:v2.1.0, symfony/routing:v5.1.0, symfony/polyfill-php72:v1.9.0, symfony/polyfill-intl-idn:v1.10.0, symfony/mime:v5.1.0, symfony/http-foundation:v5.1.0, psr/event-dispatcher:1.0.0, symfony/event-dispatcher-contracts:v2.0.0, symfony/event-dispatcher:v5.0.0, symfony/error-handler:v5.1.0, symfony/http-kernel:v5.1.0, egulias/email-validator:2.1.10, swiftmailer/swiftmailer:v6.0.0, ramsey/collection:1.0.0, brick/math:0.8.0, ramsey/uuid:4.0.0, psr/simple-cache:1.0.0, psr/container:1.0.0, laravel/framework:v8.0.0, orchestra/testbench:v6.0.0, phpdocumentor/reflection-common:2.0.0, phpdocumentor/type-resolver:1.1.0, symfony/yaml:v4.4.0, spatie/phpunit-snapshot-assertions:3.0.0
Reading /Users/user/.composer/cache/files/barryvdh/reflection-docblock/c629c7c1887a987e935ac1f6364c2bc6dee9cd57.zip from cache
  - Loading barryvdh/reflection-docblock (v2.0.6) from cache
  - Downloading symfony/polyfill-php80 (v1.17.0)
Downloading https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd
  - Downloading symfony/process (v5.1.0)
Downloading https://api.github.com/repos/symfony/process/zipball/7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1
  - Downloading symfony/finder (v5.1.0)
Downloading https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187
  - Downloading symfony/filesystem (v2.7.0)
Downloading https://api.github.com/repos/symfony/filesystem/zipball/ae4551fd6d4d4f51f2e7390fbc902fbd67f3b7ba
  - Downloading symfony/polyfill-mbstring (v1.17.0)
Downloading https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c
  - Downloading symfony/polyfill-intl-normalizer (v1.0.0)
Downloading https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/b0235b9e98e224821e23018a9487764ad6dec859
  - Downloading symfony/polyfill-intl-grapheme (v1.0.0)
Downloading https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/9332d285b58a16b144b3bf0bfd3b6334d9a43006
  - Downloading symfony/polyfill-ctype (v1.17.0)
Downloading https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9
  - Downloading symfony/string (v5.1.0)
Downloading https://api.github.com/repos/symfony/string/zipball/90c2a5103f07feb19069379f3abdcdbacc7753a9
  - Downloading symfony/service-contracts (v1.1.1)
Downloading https://api.github.com/repos/symfony/service-contracts/zipball/251a6c61244ded3d9e1f647e10cf0742dfece322
  - Downloading symfony/polyfill-php73 (v1.9.0)
Downloading https://api.github.com/repos/symfony/polyfill-php73/zipball/990ca8fa94736211d2b305178c3fb2527e1fbce1
  - Downloading symfony/console (v5.1.0)
Downloading https://api.github.com/repos/symfony/console/zipball/00bed125812716d09b163f0727ef33bb49bf3448
  - Downloading seld/phar-utils (1.0.0)
  - Downloading seld/jsonlint (1.4.0)
  - Downloading psr/log (1.0.1)
  - Downloading justinrainbow/json-schema (3.0.0)
  - Downloading composer/xdebug-handler (1.1.0)
  - Downloading composer/spdx-licenses (1.2.0)
  - Downloading composer/semver (1.0.0)
  - Downloading composer/ca-bundle (1.0.0)
  - Downloading composer/composer (1.10.0)
  - Downloading dflydev/markdown (v1.0.0)
  - Downloading doctrine/lexer (v1.0.1)
  - Downloading doctrine/annotations (v1.0)
  - Downloading doctrine/cache (v1.0)
  - Downloading doctrine/collections (v1.0)
  - Downloading doctrine/inflector (1.4.0)
  - Downloading doctrine/common (v2.7.1)
  - Downloading doctrine/dbal (v2.6.0)
  - Downloading dragonmantank/cron-expression (v3.0.0)
  - Downloading hamcrest/hamcrest-php (v2.0.0)
  - Downloading league/commonmark (1.3.0)
  - Downloading league/flysystem (1.0.34)
  - Downloading monolog/monolog (2.0.0)
  - Downloading myclabs/deep-copy (1.9.1)
  - Downloading symfony/translation-contracts (v2.0.0)
  - Downloading symfony/translation (v5.0.0)
  - Downloading nesbot/carbon (2.27.0)
  - Downloading nikic/php-parser (v4.7.0)
  - Downloading opis/closure (3.5.3)
Reading /Users/user/.composer/cache/files/sebastian/version/c315a200d32565a6d8ebb3495cb5ae34c5ced3c8.zip from cache
  - Loading sebastian/version (2.0.1) from cache
  - Downloading sebastian/type (1.1.3)
  - Downloading sebastian/resource-operations (2.0.1)
  - Downloading sebastian/recursion-context (3.0.0)
  - Downloading sebastian/object-reflector (1.1.1)
  - Downloading sebastian/object-enumerator (3.0.3)
  - Downloading sebastian/global-state (3.0.0)
  - Downloading sebastian/exporter (3.1.1)
  - Downloading sebastian/environment (4.2.2)
  - Downloading sebastian/diff (3.0.2)
  - Downloading sebastian/comparator (3.0.2)
  - Downloading phpunit/php-timer (2.1.2)
Reading /Users/user/.composer/cache/files/phpunit/php-text-template/2e483bd8277c3ff3905be9160b0938b306ac1069.zip from cache
  - Loading phpunit/php-text-template (1.2.1) from cache
  - Downloading phpunit/php-file-iterator (2.0.2)
  - Downloading theseer/tokenizer (1.1.3)
  - Downloading sebastian/code-unit-reverse-lookup (1.0.1)
  - Downloading phpunit/php-token-stream (3.1.0)
  - Downloading phpunit/php-code-coverage (7.0.7)
  - Downloading phpdocumentor/reflection-docblock (2.0.0)
  - Downloading doctrine/instantiator (1.2.0)
  - Downloading phpspec/prophecy (1.8.1)
  - Downloading phar-io/version (2.0.1)
  - Downloading phar-io/manifest (1.0.3)
  - Downloading phpunit/phpunit (8.5.0)
  - Downloading fzaninotto/faker (v1.9.1)
  - Downloading orchestra/testbench-core (v6.0.0)
  - Downloading mockery/mockery (1.4.0)
  - Downloading voku/portable-ascii (1.4.8)
  - Downloading phpoption/phpoption (1.7.4)
Reading /Users/user/.composer/cache/files/graham-campbell/result-type/d441a36413280cfa39b6b0c0a1ef293ad40876b7.zip from cache
  - Loading graham-campbell/result-type (v1.0.1) from cache
  - Downloading vlucas/phpdotenv (v5.0.0)
  - Downloading symfony/css-selector (v2.7.0)
  - Downloading tijsverkoyen/css-to-inline-styles (2.2.2)
  - Downloading symfony/var-dumper (v5.1.0)
  - Downloading symfony/deprecation-contracts (v2.1.0)
  - Downloading symfony/routing (v5.1.0)
  - Downloading symfony/polyfill-php72 (v1.9.0)
  - Downloading symfony/polyfill-intl-idn (v1.10.0)
  - Downloading symfony/mime (v5.1.0)
  - Downloading symfony/http-foundation (v5.1.0)
Reading /Users/user/.composer/cache/files/psr/event-dispatcher/8f60a8cd1b7ff4e8f9782d70d78dee877a526529.zip from cache
  - Loading psr/event-dispatcher (1.0.0) from cache
  - Downloading symfony/event-dispatcher-contracts (v2.0.0)
  - Downloading symfony/event-dispatcher (v5.0.0)
  - Downloading symfony/error-handler (v5.1.0)
  - Downloading symfony/http-kernel (v5.1.0)
  - Downloading egulias/email-validator (2.1.10)
  - Downloading swiftmailer/swiftmailer (v6.0.0)
  - Downloading ramsey/collection (1.0.0)
  - Downloading brick/math (0.8.0)
  - Downloading ramsey/uuid (4.0.0)
  - Downloading psr/simple-cache (1.0.0)
Reading /Users/user/.composer/cache/files/psr/container/9bd0b358d39e22d7d8d7a342efcb207f3ae9a84d.zip from cache
  - Loading psr/container (1.0.0) from cache
  - Downloading laravel/framework (v8.0.0)
  - Downloading orchestra/testbench (v6.0.0)
  - Downloading phpdocumentor/reflection-common (2.0.0)
  - Downloading phpdocumentor/type-resolver (1.1.0)
  - Downloading symfony/yaml (v4.4.0)
  - Downloading spatie/phpunit-snapshot-assertions (3.0.0)
[302] https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187
Following redirect (1) https://codeload.github.com/symfony/finder/legacy.zip/4298870062bfc667cb78d2b379be4bf5dec5f187
[302] https://api.github.com/repos/symfony/process/zipball/7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1
Following redirect (1) https://codeload.github.com/symfony/process/legacy.zip/7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1
[302] https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/b0235b9e98e224821e23018a9487764ad6dec859
Following redirect (1) https://codeload.github.com/symfony/polyfill-intl-normalizer/legacy.zip/b0235b9e98e224821e23018a9487764ad6dec859
[302] https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c
Following redirect (1) https://codeload.github.com/symfony/polyfill-mbstring/legacy.zip/fa79b11539418b02fc5e1897267673ba2c19419c
[302] https://api.github.com/repos/symfony/polyfill-php73/zipball/990ca8fa94736211d2b305178c3fb2527e1fbce1
Following redirect (1) https://codeload.github.com/symfony/polyfill-php73/legacy.zip/990ca8fa94736211d2b305178c3fb2527e1fbce1
[302] https://api.github.com/repos/symfony/string/zipball/90c2a5103f07feb19069379f3abdcdbacc7753a9
Following redirect (1) https://codeload.github.com/symfony/string/legacy.zip/90c2a5103f07feb19069379f3abdcdbacc7753a9
[302] https://api.github.com/repos/symfony/console/zipball/00bed125812716d09b163f0727ef33bb49bf3448
Following redirect (1) https://codeload.github.com/symfony/console/legacy.zip/00bed125812716d09b163f0727ef33bb49bf3448
[302] https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd
Following redirect (1) https://codeload.github.com/symfony/polyfill-php80/legacy.zip/5e30b2799bc1ad68f7feb62b60a73743589438dd
[302] https://api.github.com/repos/symfony/filesystem/zipball/ae4551fd6d4d4f51f2e7390fbc902fbd67f3b7ba
Following redirect (1) https://codeload.github.com/symfony/filesystem/legacy.zip/ae4551fd6d4d4f51f2e7390fbc902fbd67f3b7ba
[302] https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/9332d285b58a16b144b3bf0bfd3b6334d9a43006
Following redirect (1) https://codeload.github.com/symfony/polyfill-intl-grapheme/legacy.zip/9332d285b58a16b144b3bf0bfd3b6334d9a43006
[302] https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9
Following redirect (1) https://codeload.github.com/symfony/polyfill-ctype/legacy.zip/e94c8b1bbe2bc77507a1056cdb06451c75b427f9
[302] https://api.github.com/repos/symfony/service-contracts/zipball/251a6c61244ded3d9e1f647e10cf0742dfece322
Following redirect (1) https://codeload.github.com/symfony/service-contracts/legacy.zip/251a6c61244ded3d9e1f647e10cf0742dfece322
[200] https://codeload.github.com/symfony/finder/legacy.zip/4298870062bfc667cb78d2b379be4bf5dec5f187
Writing /Users/user/.composer/cache/files/symfony/finder/31b18b85d013829d34359b53e6bcc3e54c2fb787.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-36762a4f9a785e0829c71f6628e16c18
[200] https://codeload.github.com/symfony/process/legacy.zip/7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1
Writing /Users/user/.composer/cache/files/symfony/process/d598ab3d7c1de76148c30a9af37dfd0616d1f972.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-7552745d7878d3abdefd17547bd250f9
Downloading https://api.github.com/repos/Seldaek/phar-utils/zipball/336bb5ee20de511f3c1a164222fcfd194afcab3a
Downloading https://api.github.com/repos/Seldaek/jsonlint/zipball/66834d3e3566bb5798db7294619388786ae99394
[200] https://codeload.github.com/symfony/polyfill-ctype/legacy.zip/e94c8b1bbe2bc77507a1056cdb06451c75b427f9
Writing /Users/user/.composer/cache/files/symfony/polyfill-ctype/324c965c251e9a8db12df75e4d45a9d4ea1c2af0.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-efa07adee7ea595e5defca095b96d21c
Downloading https://api.github.com/repos/php-fig/log/zipball/5277094ed527a1c4477177d102fe4c53551953e0
[200] https://codeload.github.com/symfony/polyfill-php73/legacy.zip/990ca8fa94736211d2b305178c3fb2527e1fbce1
Writing /Users/user/.composer/cache/files/symfony/polyfill-php73/dbd8d8fd5020c85e611784f094f0b0ee770611a0.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-8a9e6fb9b9b212c7050fde5f6afd6bdc
Downloading https://api.github.com/repos/justinrainbow/json-schema/zipball/12965831120bb18852e9865804a6089906323b8e
[200] https://codeload.github.com/symfony/polyfill-intl-normalizer/legacy.zip/b0235b9e98e224821e23018a9487764ad6dec859
Writing /Users/user/.composer/cache/files/symfony/polyfill-intl-normalizer/bb7dfa7ce26c1b49f6e12a1563ef6f6afb79659b.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-9bf60ca1cc7f8dd071b17853a5d6de61
Downloading https://api.github.com/repos/composer/xdebug-handler/zipball/c919dc6c62e221fc6406f861ea13433c0aa24f08
[200] https://codeload.github.com/symfony/polyfill-mbstring/legacy.zip/fa79b11539418b02fc5e1897267673ba2c19419c
Writing /Users/user/.composer/cache/files/symfony/polyfill-mbstring/2aeac298cb72687a66d3c8203fa09685462404f3.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-892ad45b29cea9e85524ad4f4ba9577c
Downloading https://api.github.com/repos/composer/spdx-licenses/zipball/2d899e9b33023c631854f36c39ef9f8317a7ab33
[200] https://codeload.github.com/symfony/polyfill-php80/legacy.zip/5e30b2799bc1ad68f7feb62b60a73743589438dd
Writing /Users/user/.composer/cache/files/symfony/polyfill-php80/a617115fcaa7c5713fd5b5d35723dda17075e02d.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-78c8f496ad75875e008803714b651b6a
Downloading https://api.github.com/repos/composer/semver/zipball/d0e1ccc6d44ab318b758d709e19176037da6b1ba
[200] https://codeload.github.com/symfony/console/legacy.zip/00bed125812716d09b163f0727ef33bb49bf3448
Writing /Users/user/.composer/cache/files/symfony/console/55b0bfe8a365f1839e9479e0fab81f0deb9b663b.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-ca41b761ddf3b02dc443f13244ad6b65
Downloading https://api.github.com/repos/composer/ca-bundle/zipball/4059c02b474668bde9d115731615eaf073691ee1
[200] https://codeload.github.com/symfony/string/legacy.zip/90c2a5103f07feb19069379f3abdcdbacc7753a9
Writing /Users/user/.composer/cache/files/symfony/string/4aa08e1f7810bf1c00d53b44f941bde764088d90.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-8d3e6fd62c8c838c20c7c3ef96125d63
Downloading https://api.github.com/repos/composer/composer/zipball/472c917b2a083ec7d2fa25c55fd099d1300e2515
[200] https://codeload.github.com/symfony/filesystem/legacy.zip/ae4551fd6d4d4f51f2e7390fbc902fbd67f3b7ba
Writing /Users/user/.composer/cache/files/symfony/filesystem/08f8b86ae41625a3890e9c1b455b70c0a8e93824.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-42aa2d042621d69d343469ec554cf00b
Downloading https://api.github.com/repos/dflydev/dflydev-markdown/zipball/76501a808522dbe40a5a71d272bd08d54cbae03d
[302] https://api.github.com/repos/Seldaek/jsonlint/zipball/66834d3e3566bb5798db7294619388786ae99394
Following redirect (1) https://codeload.github.com/Seldaek/jsonlint/legacy.zip/66834d3e3566bb5798db7294619388786ae99394
[302] https://api.github.com/repos/php-fig/log/zipball/5277094ed527a1c4477177d102fe4c53551953e0
Following redirect (1) https://codeload.github.com/php-fig/log/legacy.zip/5277094ed527a1c4477177d102fe4c53551953e0
[302] https://api.github.com/repos/Seldaek/phar-utils/zipball/336bb5ee20de511f3c1a164222fcfd194afcab3a
Following redirect (1) https://codeload.github.com/Seldaek/phar-utils/legacy.zip/336bb5ee20de511f3c1a164222fcfd194afcab3a
[302] https://api.github.com/repos/justinrainbow/json-schema/zipball/12965831120bb18852e9865804a6089906323b8e
Following redirect (1) https://codeload.github.com/justinrainbow/json-schema/legacy.zip/12965831120bb18852e9865804a6089906323b8e
[302] https://api.github.com/repos/composer/xdebug-handler/zipball/c919dc6c62e221fc6406f861ea13433c0aa24f08
Following redirect (1) https://codeload.github.com/composer/xdebug-handler/legacy.zip/c919dc6c62e221fc6406f861ea13433c0aa24f08
[302] https://api.github.com/repos/composer/spdx-licenses/zipball/2d899e9b33023c631854f36c39ef9f8317a7ab33
Following redirect (1) https://codeload.github.com/composer/spdx-licenses/legacy.zip/2d899e9b33023c631854f36c39ef9f8317a7ab33
[200] https://codeload.github.com/symfony/service-contracts/legacy.zip/251a6c61244ded3d9e1f647e10cf0742dfece322
Writing /Users/user/.composer/cache/files/symfony/service-contracts/0270e4a2838694f6a55540e0e90fbd6069c3f79c.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-2c3edabc55e24a23918a6a57f8adaf78
Downloading https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c
[302] https://api.github.com/repos/composer/semver/zipball/d0e1ccc6d44ab318b758d709e19176037da6b1ba
Following redirect (1) https://codeload.github.com/composer/semver/legacy.zip/d0e1ccc6d44ab318b758d709e19176037da6b1ba
[302] https://api.github.com/repos/dflydev/dflydev-markdown/zipball/76501a808522dbe40a5a71d272bd08d54cbae03d
Following redirect (1) https://codeload.github.com/dflydev/dflydev-markdown/legacy.zip/76501a808522dbe40a5a71d272bd08d54cbae03d
[200] https://codeload.github.com/php-fig/log/legacy.zip/5277094ed527a1c4477177d102fe4c53551953e0
Writing /Users/user/.composer/cache/files/psr/log/cacb6dfae2d4e16a8756b2db605ecb4cb0b10539.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-92219a5eb7ab9be99c9c0b769d40af8b
Downloading https://api.github.com/repos/doctrine/annotations/zipball/fae359b3efd908e407a0105ff8956b5c94ddca8e
[200] https://codeload.github.com/symfony/polyfill-intl-grapheme/legacy.zip/9332d285b58a16b144b3bf0bfd3b6334d9a43006
Writing /Users/user/.composer/cache/files/symfony/polyfill-intl-grapheme/3941381ffb57097206cd8c26d801590e753e4c08.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-537c68c4712aa4c3f17b5ade2591e5a9
Downloading https://api.github.com/repos/doctrine/cache/zipball/914abe4a49f2eae2b268073cca147b530da0308a
[302] https://api.github.com/repos/composer/ca-bundle/zipball/4059c02b474668bde9d115731615eaf073691ee1
Following redirect (1) https://codeload.github.com/composer/ca-bundle/legacy.zip/4059c02b474668bde9d115731615eaf073691ee1
[302] https://api.github.com/repos/composer/composer/zipball/472c917b2a083ec7d2fa25c55fd099d1300e2515
Following redirect (1) https://codeload.github.com/composer/composer/legacy.zip/472c917b2a083ec7d2fa25c55fd099d1300e2515
[200] https://codeload.github.com/Seldaek/jsonlint/legacy.zip/66834d3e3566bb5798db7294619388786ae99394
Writing /Users/user/.composer/cache/files/seld/jsonlint/7cd0c5e006a19907fadc528b387184908e74a882.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-2ec77e6b72abe016de8137c942dbddce
Downloading https://api.github.com/repos/doctrine/collections/zipball/b1e6852b5e49e94ac818feca3b1a8689daefbffc
[200] https://codeload.github.com/Seldaek/phar-utils/legacy.zip/336bb5ee20de511f3c1a164222fcfd194afcab3a
Writing /Users/user/.composer/cache/files/seld/phar-utils/927dea6f01cde8ffe0567025f2243477f76f3c13.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-8c03c4700777f3741d9750ff95ed3c4f
Downloading https://api.github.com/repos/doctrine/inflector/zipball/ab5de36233a1995f9c776c741b803eb8207aebef
[302] https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c
Following redirect (1) https://codeload.github.com/doctrine/lexer/legacy.zip/83893c552fd2045dd78aef794c31e694c37c0b8c
[200] https://codeload.github.com/justinrainbow/json-schema/legacy.zip/12965831120bb18852e9865804a6089906323b8e
Writing /Users/user/.composer/cache/files/justinrainbow/json-schema/550530c26c4d856f0143b97be0496b10c2065cb9.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-bceee1074d8bc56fb73f600ce0719b8b
Downloading https://api.github.com/repos/doctrine/common/zipball/5954c297e9d93ff84554906c2fbbc2a133c43941
[200] https://codeload.github.com/composer/spdx-licenses/legacy.zip/2d899e9b33023c631854f36c39ef9f8317a7ab33
Writing /Users/user/.composer/cache/files/composer/spdx-licenses/fb6c27c7fe3e7a4b0dc6504f452602353b33f077.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-1b41bb86639b938db98cb1a2abea5e94
[302] https://api.github.com/repos/doctrine/annotations/zipball/fae359b3efd908e407a0105ff8956b5c94ddca8e
Following redirect (1) https://codeload.github.com/doctrine/annotations/legacy.zip/fae359b3efd908e407a0105ff8956b5c94ddca8e
[302] https://api.github.com/repos/doctrine/cache/zipball/914abe4a49f2eae2b268073cca147b530da0308a
Following redirect (1) https://codeload.github.com/doctrine/cache/legacy.zip/914abe4a49f2eae2b268073cca147b530da0308a
Downloading https://api.github.com/repos/doctrine/dbal/zipball/498760e55195ccaf08076cb9100a2972ba74c001
[200] https://codeload.github.com/composer/xdebug-handler/legacy.zip/c919dc6c62e221fc6406f861ea13433c0aa24f08
Writing /Users/user/.composer/cache/files/composer/xdebug-handler/ea268119cbaf7bc7786fcda9af6dda76627f3bfa.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-4ca57c8de8132c1175dc1edc0299cee8
Downloading https://api.github.com/repos/dragonmantank/cron-expression/zipball/70c187e8d95c828fc93a2d09d63179c13381482e
[200] https://codeload.github.com/composer/semver/legacy.zip/d0e1ccc6d44ab318b758d709e19176037da6b1ba
Writing /Users/user/.composer/cache/files/composer/semver/92180797a2d5556dd7f4a5bd0bc285717f8b91c3.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-af3199162c3acd921a5d69fb961f3132
[200] https://codeload.github.com/dflydev/dflydev-markdown/legacy.zip/76501a808522dbe40a5a71d272bd08d54cbae03d
Writing /Users/user/.composer/cache/files/dflydev/markdown/351d0d976eecb0ebd5cff89f2ce3c4ecd46acbf3.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-65b8e5015d09b197eb7f43f36386339d
Downloading https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad
Downloading https://api.github.com/repos/thephpleague/commonmark/zipball/4f30be7a2cbf3bfa5788abab71384713e48f451f
[302] https://api.github.com/repos/doctrine/collections/zipball/b1e6852b5e49e94ac818feca3b1a8689daefbffc
Following redirect (1) https://codeload.github.com/doctrine/collections/legacy.zip/b1e6852b5e49e94ac818feca3b1a8689daefbffc
[302] https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad
Following redirect (1) https://codeload.github.com/hamcrest/hamcrest-php/legacy.zip/776503d3a8e85d4f9a1148614f95b7a608b046ad
[302] https://api.github.com/repos/doctrine/inflector/zipball/ab5de36233a1995f9c776c741b803eb8207aebef
Following redirect (1) https://codeload.github.com/doctrine/inflector/legacy.zip/ab5de36233a1995f9c776c741b803eb8207aebef
[302] https://api.github.com/repos/doctrine/common/zipball/5954c297e9d93ff84554906c2fbbc2a133c43941
Following redirect (1) https://codeload.github.com/doctrine/common/legacy.zip/5954c297e9d93ff84554906c2fbbc2a133c43941
[200] https://codeload.github.com/doctrine/lexer/legacy.zip/83893c552fd2045dd78aef794c31e694c37c0b8c
Writing /Users/user/.composer/cache/files/doctrine/lexer/7729c21de67e5610f228d5bf8d14b3d474690743.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-9a60299ff6993c94354be985ce89e8ce
Downloading https://api.github.com/repos/thephpleague/flysystem/zipball/469ad53c13ea19a0e54e3e5d70f61227ddcc0299
[302] https://api.github.com/repos/doctrine/dbal/zipball/498760e55195ccaf08076cb9100a2972ba74c001
Following redirect (1) https://codeload.github.com/doctrine/dbal/legacy.zip/498760e55195ccaf08076cb9100a2972ba74c001
[302] https://api.github.com/repos/dragonmantank/cron-expression/zipball/70c187e8d95c828fc93a2d09d63179c13381482e
Following redirect (1) https://codeload.github.com/dragonmantank/cron-expression/legacy.zip/70c187e8d95c828fc93a2d09d63179c13381482e
[302] https://api.github.com/repos/thephpleague/commonmark/zipball/4f30be7a2cbf3bfa5788abab71384713e48f451f
Following redirect (1) https://codeload.github.com/thephpleague/commonmark/legacy.zip/4f30be7a2cbf3bfa5788abab71384713e48f451f
[200] https://codeload.github.com/doctrine/annotations/legacy.zip/fae359b3efd908e407a0105ff8956b5c94ddca8e
Writing /Users/user/.composer/cache/files/doctrine/annotations/26feaff9e074de8b205afe3739c5e9a9336b4c8d.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-36b530170892522363f8d75fc6616ef9
Downloading https://api.github.com/repos/Seldaek/monolog/zipball/68545165e19249013afd1d6f7485aecff07a2d22
[200] https://codeload.github.com/doctrine/cache/legacy.zip/914abe4a49f2eae2b268073cca147b530da0308a
Writing /Users/user/.composer/cache/files/doctrine/cache/56f5afe285322ed17ada3f7f31d353adb25d9b48.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-27d6c519248d7ac2dba4bfdc22225dfc
Downloading https://api.github.com/repos/myclabs/DeepCopy/zipball/e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72
[302] https://api.github.com/repos/thephpleague/flysystem/zipball/469ad53c13ea19a0e54e3e5d70f61227ddcc0299
Following redirect (1) https://codeload.github.com/thephpleague/flysystem/legacy.zip/469ad53c13ea19a0e54e3e5d70f61227ddcc0299
[200] https://codeload.github.com/hamcrest/hamcrest-php/legacy.zip/776503d3a8e85d4f9a1148614f95b7a608b046ad
Writing /Users/user/.composer/cache/files/hamcrest/hamcrest-php/d042c0975dfcbebdb0f3c314e039589ead2e812e.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-9da765038966c9ce44d5d3c972876b5c
Downloading https://api.github.com/repos/symfony/translation-contracts/zipball/8feb81e6bb1a42d6a3b1429c751d291eb6d05297
[200] https://codeload.github.com/doctrine/collections/legacy.zip/b1e6852b5e49e94ac818feca3b1a8689daefbffc
Writing /Users/user/.composer/cache/files/doctrine/collections/2e8001dc4954ee85aa0c59ad5bfbd5d6937f4b1b.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-68ff8716513d9567a1b544fbb7c28def
Downloading https://api.github.com/repos/symfony/translation/zipball/e86df1b0f1672362ecf96023faf2c42241c41330
[200] https://codeload.github.com/composer/ca-bundle/legacy.zip/4059c02b474668bde9d115731615eaf073691ee1
Writing /Users/user/.composer/cache/files/composer/ca-bundle/b776dd2007da2294704c6d84d0e96a88bff8be3a.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-ecde51ea5678eef29c49ac7f89a80dba
Downloading https://api.github.com/repos/briannesbitt/Carbon/zipball/13b8485a8690f103bf19cba64879c218b102b726
[200] https://codeload.github.com/doctrine/common/legacy.zip/5954c297e9d93ff84554906c2fbbc2a133c43941
Writing /Users/user/.composer/cache/files/doctrine/common/3f8defcf4ad936c56fd668b25df13448169e88f1.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-518e4b5619e63046a4f37bbb3c062d66
Downloading https://api.github.com/repos/nikic/PHP-Parser/zipball/21dce06dfbf0365c6a7cc8fdbdc995926c6a9300
[302] https://api.github.com/repos/Seldaek/monolog/zipball/68545165e19249013afd1d6f7485aecff07a2d22
Following redirect (1) https://codeload.github.com/Seldaek/monolog/legacy.zip/68545165e19249013afd1d6f7485aecff07a2d22
[302] https://api.github.com/repos/myclabs/DeepCopy/zipball/e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72
Following redirect (1) https://codeload.github.com/myclabs/DeepCopy/legacy.zip/e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72
[302] https://api.github.com/repos/symfony/translation-contracts/zipball/8feb81e6bb1a42d6a3b1429c751d291eb6d05297
Following redirect (1) https://codeload.github.com/symfony/translation-contracts/legacy.zip/8feb81e6bb1a42d6a3b1429c751d291eb6d05297
[302] https://api.github.com/repos/symfony/translation/zipball/e86df1b0f1672362ecf96023faf2c42241c41330
Following redirect (1) https://codeload.github.com/symfony/translation/legacy.zip/e86df1b0f1672362ecf96023faf2c42241c41330
[302] https://api.github.com/repos/briannesbitt/Carbon/zipball/13b8485a8690f103bf19cba64879c218b102b726
Following redirect (1) https://codeload.github.com/briannesbitt/Carbon/legacy.zip/13b8485a8690f103bf19cba64879c218b102b726
[200] https://codeload.github.com/dragonmantank/cron-expression/legacy.zip/70c187e8d95c828fc93a2d09d63179c13381482e
Writing /Users/user/.composer/cache/files/dragonmantank/cron-expression/31844d68bc607026177039be3eb96bacebcc35be.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-a41ba05a9779ca879d56d25fd2781d93
Downloading https://api.github.com/repos/opis/closure/zipball/cac47092144043d5d676e2e7cf8d0d2f83fc89ca
[200] https://codeload.github.com/composer/composer/legacy.zip/472c917b2a083ec7d2fa25c55fd099d1300e2515
Writing /Users/user/.composer/cache/files/composer/composer/3b4b10e8b4b9638624c237d6802d5096803cdab2.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-dafeefbc8b168cd12c4d06965b4e708b
Downloading https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3
[302] https://api.github.com/repos/nikic/PHP-Parser/zipball/21dce06dfbf0365c6a7cc8fdbdc995926c6a9300
Following redirect (1) https://codeload.github.com/nikic/PHP-Parser/legacy.zip/21dce06dfbf0365c6a7cc8fdbdc995926c6a9300
[200] https://codeload.github.com/thephpleague/flysystem/legacy.zip/469ad53c13ea19a0e54e3e5d70f61227ddcc0299
Writing /Users/user/.composer/cache/files/league/flysystem/185537ff3507cfdbf6ab7a90ffba5cb35249a643.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-cf98370a254d48c468c028754387ae3e
Downloading https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9
[302] https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9
Following redirect (1) https://codeload.github.com/sebastianbergmann/resource-operations/legacy.zip/4d7a795d35b889bf80a0cc04e08d77cedfa917a9
[200] https://codeload.github.com/thephpleague/commonmark/legacy.zip/4f30be7a2cbf3bfa5788abab71384713e48f451f
Writing /Users/user/.composer/cache/files/league/commonmark/33cdcfdcffab02e9d19fec203eba16bd2dbb4987.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-80a4f9b874607017b18782066695fabf
Downloading https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8
[200] https://codeload.github.com/Seldaek/monolog/legacy.zip/68545165e19249013afd1d6f7485aecff07a2d22
Writing /Users/user/.composer/cache/files/monolog/monolog/b13e58dd8568128c83f8d0ce912d4eef85627823.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-cb863cfc2fff46d298147a1ecabc9631
Downloading https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be
[302] https://api.github.com/repos/opis/closure/zipball/cac47092144043d5d676e2e7cf8d0d2f83fc89ca
Following redirect (1) https://codeload.github.com/opis/closure/legacy.zip/cac47092144043d5d676e2e7cf8d0d2f83fc89ca
[302] https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3
Following redirect (1) https://codeload.github.com/sebastianbergmann/type/legacy.zip/3aaaa15fa71d27650d62a948be022fe3b48541a3
[200] https://codeload.github.com/doctrine/dbal/legacy.zip/498760e55195ccaf08076cb9100a2972ba74c001
Writing /Users/user/.composer/cache/files/doctrine/dbal/8b3dd463b44347d65a6b9fdde08c96b4a4010bbb.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-9a99896f967a74ad1a1af55813e54a6a
Downloading https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5
[200] https://codeload.github.com/myclabs/DeepCopy/legacy.zip/e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72
Writing /Users/user/.composer/cache/files/myclabs/deep-copy/3b3ed39d5ba37f8034dcea3642aab6e88eed7976.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-6b659160df6191cb6aad4c19476f79d3
Downloading https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4
[302] https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4
Following redirect (1) https://codeload.github.com/sebastianbergmann/global-state/legacy.zip/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4
[200] https://codeload.github.com/symfony/translation-contracts/legacy.zip/8feb81e6bb1a42d6a3b1429c751d291eb6d05297
Writing /Users/user/.composer/cache/files/symfony/translation-contracts/b796773e6cd07e8d3bd8307e4e841484f4fcb75f.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-7c127a583fa4b1f3d3a45f0f0657627b
Downloading https://api.github.com/repos/sebastianbergmann/exporter/zipball/06a9a5947f47b3029d76118eb5c22802e5869687
[200] https://codeload.github.com/symfony/translation/legacy.zip/e86df1b0f1672362ecf96023faf2c42241c41330
Writing /Users/user/.composer/cache/files/symfony/translation/a145649edf1f81fac0f189d2f3c7dbaeec6c7b41.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-a9b2523d9eca3f089940d9ad646895fc
Downloading https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404
[200] https://codeload.github.com/doctrine/inflector/legacy.zip/ab5de36233a1995f9c776c741b803eb8207aebef
Writing /Users/user/.composer/cache/files/doctrine/inflector/dcf4e58cd93679b1be2f2c17bcdb367b6000d07b.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-e3adc09e525b78a1a96d224c911278ef
Downloading https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29
[200] https://codeload.github.com/sebastianbergmann/resource-operations/legacy.zip/4d7a795d35b889bf80a0cc04e08d77cedfa917a9
Writing /Users/user/.composer/cache/files/sebastian/resource-operations/5a27fbb9d458caeca4ba4f68794395b0673dcbef.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-ce2ce8378d63efeb4eab558ec884980e
Downloading https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da
[302] https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8
Following redirect (1) https://codeload.github.com/sebastianbergmann/recursion-context/legacy.zip/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8
[302] https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be
Following redirect (1) https://codeload.github.com/sebastianbergmann/object-reflector/legacy.zip/773f97c67f28de00d397be301821b06708fca0be
[200] https://codeload.github.com/nikic/PHP-Parser/legacy.zip/21dce06dfbf0365c6a7cc8fdbdc995926c6a9300
Writing /Users/user/.composer/cache/files/nikic/php-parser/5f029770152bc168a2182d9779a99af9372256a7.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-1b9096718dd0b37dbf6525f2b9744923
Downloading https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e
[200] https://codeload.github.com/sebastianbergmann/type/legacy.zip/3aaaa15fa71d27650d62a948be022fe3b48541a3
Writing /Users/user/.composer/cache/files/sebastian/type/6c86af81e3d675f46bfc7bded8179ef036eacbe6.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-5ba13296261b9b0c97ecb8d9f91a2f4d
Downloading https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946
[302] https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29
Following redirect (1) https://codeload.github.com/sebastianbergmann/diff/legacy.zip/720fcc7e9b5cf384ea68d9d930d480907a0c1a29
[302] https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5
Following redirect (1) https://codeload.github.com/sebastianbergmann/object-enumerator/legacy.zip/7cfd9e65d11ffb5af41198476395774d4c8a84c5
[200] https://codeload.github.com/sebastianbergmann/global-state/legacy.zip/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4
Writing /Users/user/.composer/cache/files/sebastian/global-state/5eec8e48052fd6b5c9c52d704890e41edcd90f37.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-9801c5494294555e32a3e3478bc154d3
Downloading https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9
[302] https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946
Following redirect (1) https://codeload.github.com/sebastianbergmann/php-file-iterator/legacy.zip/050bedf145a257b1ff02746c31894800e5122946
[302] https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9
Following redirect (1) https://codeload.github.com/theseer/tokenizer/legacy.zip/11336f6f84e16a720dae9d8e6ed5019efa85a0f9
[200] https://codeload.github.com/opis/closure/legacy.zip/cac47092144043d5d676e2e7cf8d0d2f83fc89ca
Writing /Users/user/.composer/cache/files/opis/closure/1cec8bf78e9243db5414972088cf710c2ed3949f.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-8e1d61cbbd9e76ae71931835fb71e865
Downloading https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18
[200] https://codeload.github.com/briannesbitt/Carbon/legacy.zip/13b8485a8690f103bf19cba64879c218b102b726
Writing /Users/user/.composer/cache/files/nesbot/carbon/6eaade2a03d88efdde2c2372cf2c8621dbb67c20.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-33cf88dd2efe85d45974703d89e24665
Downloading https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e899757bb3df5ff6e95089132f32cd59aac2220a
[302] https://api.github.com/repos/sebastianbergmann/exporter/zipball/06a9a5947f47b3029d76118eb5c22802e5869687
Following redirect (1) https://codeload.github.com/sebastianbergmann/exporter/legacy.zip/06a9a5947f47b3029d76118eb5c22802e5869687
[200] https://codeload.github.com/sebastianbergmann/recursion-context/legacy.zip/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8
Writing /Users/user/.composer/cache/files/sebastian/recursion-context/f8c1c1968fbcf5ae9af5ec6ceb30aab26fa949b2.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-b065ab2b6117707e2644c9eb819e4a7f
Downloading https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7743bbcfff2a907e9ee4a25be13d0f8ec5e73800
[200] https://codeload.github.com/sebastianbergmann/object-reflector/legacy.zip/773f97c67f28de00d397be301821b06708fca0be
Writing /Users/user/.composer/cache/files/sebastian/object-reflector/5c43ed184bdc32c1be2cebdc45c53727b61c366e.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-082df432437eb421744d3c50a208ea13
[302] https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18
Following redirect (1) https://codeload.github.com/sebastianbergmann/code-unit-reverse-lookup/legacy.zip/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18
Downloading https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66ae84e9d7c8ea85c979cb65977bd8e608baf0c5
[302] https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404
Following redirect (1) https://codeload.github.com/sebastianbergmann/environment/legacy.zip/f2a2c8e1c97c11ace607a7a667d73d47c19fe404
[302] https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da
Following redirect (1) https://codeload.github.com/sebastianbergmann/comparator/legacy.zip/5de4fc177adf9bce8df98d8d141a7559d7ccf6da
[200] https://codeload.github.com/sebastianbergmann/object-enumerator/legacy.zip/7cfd9e65d11ffb5af41198476395774d4c8a84c5
Writing /Users/user/.composer/cache/files/sebastian/object-enumerator/38cda1088c4ea6478e144eed041619e5c731b8ba.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-7310fa3362590e8d5dfdfdf512b17636
Downloading https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a
[200] https://codeload.github.com/sebastianbergmann/diff/legacy.zip/720fcc7e9b5cf384ea68d9d930d480907a0c1a29
Writing /Users/user/.composer/cache/files/sebastian/diff/e6140b7bac501c4f9a1ee510440e3b8aff26e8d5.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-1fc16c5508d0c2ae592a80194945b589
Downloading https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76
[200] https://codeload.github.com/sebastianbergmann/php-file-iterator/legacy.zip/050bedf145a257b1ff02746c31894800e5122946
Writing /Users/user/.composer/cache/files/phpunit/php-file-iterator/b0a63482ef2c09625cd88f7460cebada5ec78a61.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-835dfd7927454b4a802c918292bb80ff
Downloading https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6
[200] https://codeload.github.com/theseer/tokenizer/legacy.zip/11336f6f84e16a720dae9d8e6ed5019efa85a0f9
Writing /Users/user/.composer/cache/files/theseer/tokenizer/9f108d4e5b5b3c7a693eed39a630bdeb969c2f15.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-d6db8195338a5b43ce05ea34411fb9bc
Downloading https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4
[302] https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e
Following redirect (1) https://codeload.github.com/sebastianbergmann/php-timer/legacy.zip/1038454804406b0b5f5f520358e78c1c2f71501e
[302] https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6
Following redirect (1) https://codeload.github.com/phar-io/version/legacy.zip/45a2ec53a73c70ce41d55cedef9063630abaf1b6
[302] https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4
Following redirect (1) https://codeload.github.com/phar-io/manifest/legacy.zip/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4
[302] https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e899757bb3df5ff6e95089132f32cd59aac2220a
Following redirect (1) https://codeload.github.com/sebastianbergmann/php-token-stream/legacy.zip/e899757bb3df5ff6e95089132f32cd59aac2220a
[200] https://codeload.github.com/sebastianbergmann/code-unit-reverse-lookup/legacy.zip/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18
Writing /Users/user/.composer/cache/files/sebastian/code-unit-reverse-lookup/9fdb38e356a0265a2dd6b64495413906b9366038.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-0bf02b77adc3d7dc7cf6ca34f9f04e7e
Downloading https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3ee1c1fd6fc264480c25b6fb8285edefe1702dab
[200] https://codeload.github.com/sebastianbergmann/comparator/legacy.zip/5de4fc177adf9bce8df98d8d141a7559d7ccf6da
Writing /Users/user/.composer/cache/files/sebastian/comparator/6f6a5004ba92a72cc62a4983fe102df11076b827.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-6d6fe32ce91343aaa3a35f1d078cd5f7
Downloading https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f
[302] https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7743bbcfff2a907e9ee4a25be13d0f8ec5e73800
Following redirect (1) https://codeload.github.com/sebastianbergmann/php-code-coverage/legacy.zip/7743bbcfff2a907e9ee4a25be13d0f8ec5e73800
[200] https://codeload.github.com/sebastianbergmann/exporter/legacy.zip/06a9a5947f47b3029d76118eb5c22802e5869687
Writing /Users/user/.composer/cache/files/sebastian/exporter/9b8a18bd0a95ec1dd319d9d7b9d79d36ea0d22de.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-1b7e57c78f4fb22cb6048b2b3436c191
Downloading https://api.github.com/repos/orchestral/testbench-core/zipball/27d990e6d6790d265db6097036dcce5fe95d1358
[302] https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66ae84e9d7c8ea85c979cb65977bd8e608baf0c5
Following redirect (1) https://codeload.github.com/phpDocumentor/ReflectionDocBlock/legacy.zip/66ae84e9d7c8ea85c979cb65977bd8e608baf0c5
[302] https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a
Following redirect (1) https://codeload.github.com/doctrine/instantiator/legacy.zip/a2c590166b2133a4633738648b6b064edae0814a
[302] https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76
Following redirect (1) https://codeload.github.com/phpspec/prophecy/legacy.zip/1927e75f4ed19131ec9bcc3b002e07fb1173ee76
[200] https://codeload.github.com/sebastianbergmann/php-timer/legacy.zip/1038454804406b0b5f5f520358e78c1c2f71501e
Writing /Users/user/.composer/cache/files/phpunit/php-timer/5d1cc231bf922cbe1994798457539b5e0210063e.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-80333f6b2008861eabf9c3f46b158293
[302] https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f
Following redirect (1) https://codeload.github.com/fzaninotto/Faker/legacy.zip/fc10d778e4b84d5bd315dad194661e091d307c6f
Downloading https://api.github.com/repos/mockery/mockery/zipball/6c6a7c533469873deacf998237e7649fc6b36223
[200] https://codeload.github.com/phar-io/version/legacy.zip/45a2ec53a73c70ce41d55cedef9063630abaf1b6
Writing /Users/user/.composer/cache/files/phar-io/version/40d39961466b12b36285c10a47f16a90731e5b71.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-23130cc5d06711f77c8001c958b8b203
Downloading https://api.github.com/repos/voku/portable-ascii/zipball/a3801f5facf187a28cc2cae7b98a540c36406dc4
[200] https://codeload.github.com/phar-io/manifest/legacy.zip/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4
Writing /Users/user/.composer/cache/files/phar-io/manifest/7594b0b62ecd9d09967f6a8274ba7381e265b200.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-0ad1cd0209a297e9ce5d55362bc26243
[302] https://api.github.com/repos/mockery/mockery/zipball/6c6a7c533469873deacf998237e7649fc6b36223
Following redirect (1) https://codeload.github.com/mockery/mockery/legacy.zip/6c6a7c533469873deacf998237e7649fc6b36223
Downloading https://api.github.com/repos/schmittjoh/php-option/zipball/b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3
[200] https://codeload.github.com/sebastianbergmann/environment/legacy.zip/f2a2c8e1c97c11ace607a7a667d73d47c19fe404
Writing /Users/user/.composer/cache/files/sebastian/environment/709581b30b30b1932601dd6efb54fa42072b2a05.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-c9e2e35f9bd05b155156b790d9b9237d
Downloading https://api.github.com/repos/vlucas/phpdotenv/zipball/fbb6a5f65512f21d0db9e21bd49e67f70a9bbd5e
[302] https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3ee1c1fd6fc264480c25b6fb8285edefe1702dab
Following redirect (1) https://codeload.github.com/sebastianbergmann/phpunit/legacy.zip/3ee1c1fd6fc264480c25b6fb8285edefe1702dab
[302] https://api.github.com/repos/schmittjoh/php-option/zipball/b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3
Following redirect (1) https://codeload.github.com/schmittjoh/php-option/legacy.zip/b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3
[200] https://codeload.github.com/sebastianbergmann/php-token-stream/legacy.zip/e899757bb3df5ff6e95089132f32cd59aac2220a
Writing /Users/user/.composer/cache/files/phpunit/php-token-stream/7ca4de4c3a689b6c11d65bb38f3098e36bb5f6b5.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-9c1213ec09d490dcdae23d80cbb66532
Downloading https://api.github.com/repos/symfony/css-selector/zipball/0b5c07b516226b7dd32afbbc82fe547a469c5092
[302] https://api.github.com/repos/orchestral/testbench-core/zipball/27d990e6d6790d265db6097036dcce5fe95d1358
Following redirect (1) https://codeload.github.com/orchestral/testbench-core/legacy.zip/27d990e6d6790d265db6097036dcce5fe95d1358
[200] https://codeload.github.com/phpspec/prophecy/legacy.zip/1927e75f4ed19131ec9bcc3b002e07fb1173ee76
Writing /Users/user/.composer/cache/files/phpspec/prophecy/0ea281efc6fadd80d0a2d27a7bac830ab159b33a.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-4a6ebeb34599becd6954186217bc9604
Downloading https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15
[302] https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15
Following redirect (1) https://codeload.github.com/tijsverkoyen/CssToInlineStyles/legacy.zip/dda2ee426acd6d801d5b7fd1001cde9b5f790e15
[200] https://codeload.github.com/phpDocumentor/ReflectionDocBlock/legacy.zip/66ae84e9d7c8ea85c979cb65977bd8e608baf0c5
Writing /Users/user/.composer/cache/files/phpdocumentor/reflection-docblock/fec356de2294c2dc1efdc88dff252d4e01fc6cfe.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-2052f0feda1654d9d8c90360df415c4f
Downloading https://api.github.com/repos/symfony/var-dumper/zipball/46a942903059b0b05e601f00eb64179e05578c0f
[302] https://api.github.com/repos/voku/portable-ascii/zipball/a3801f5facf187a28cc2cae7b98a540c36406dc4
Following redirect (1) https://codeload.github.com/voku/portable-ascii/legacy.zip/a3801f5facf187a28cc2cae7b98a540c36406dc4
[200] https://codeload.github.com/doctrine/instantiator/legacy.zip/a2c590166b2133a4633738648b6b064edae0814a
Writing /Users/user/.composer/cache/files/doctrine/instantiator/8921036f299159bb1b05641163cd04de696706e4.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-eca7db77455a47dde1844cf3a3c0a600
Downloading https://api.github.com/repos/symfony/deprecation-contracts/zipball/ede224dcbc36138943a296107db2b8b2a690ac1c
[302] https://api.github.com/repos/symfony/var-dumper/zipball/46a942903059b0b05e601f00eb64179e05578c0f
Following redirect (1) https://codeload.github.com/symfony/var-dumper/legacy.zip/46a942903059b0b05e601f00eb64179e05578c0f
[302] https://api.github.com/repos/vlucas/phpdotenv/zipball/fbb6a5f65512f21d0db9e21bd49e67f70a9bbd5e
Following redirect (1) https://codeload.github.com/vlucas/phpdotenv/legacy.zip/fbb6a5f65512f21d0db9e21bd49e67f70a9bbd5e
[200] https://codeload.github.com/sebastianbergmann/php-code-coverage/legacy.zip/7743bbcfff2a907e9ee4a25be13d0f8ec5e73800
Writing /Users/user/.composer/cache/files/phpunit/php-code-coverage/7064efa9ee0e86a626459420ab012a36785f2fca.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-8d1a83edfd2e67527ef31c56e7dd7b6f
Downloading https://api.github.com/repos/symfony/routing/zipball/95cf30145b26c758d6d832aa2d0de3128978d556
[302] https://api.github.com/repos/symfony/css-selector/zipball/0b5c07b516226b7dd32afbbc82fe547a469c5092
Following redirect (1) https://codeload.github.com/symfony/css-selector/legacy.zip/0b5c07b516226b7dd32afbbc82fe547a469c5092
[200] https://codeload.github.com/mockery/mockery/legacy.zip/6c6a7c533469873deacf998237e7649fc6b36223
Writing /Users/user/.composer/cache/files/mockery/mockery/c888052aa5cd3068f6d2005bdb47cbf45c15ef82.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-d623e9bd7eb3036261f4d9f2e9e599ad
Downloading https://api.github.com/repos/symfony/polyfill-php72/zipball/95c50420b0baed23852452a7f0c7b527303ed5ae
[200] https://codeload.github.com/orchestral/testbench-core/legacy.zip/27d990e6d6790d265db6097036dcce5fe95d1358
Writing /Users/user/.composer/cache/files/orchestra/testbench-core/36a3949da82c583695575f648f44c63fd9cf6946.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-d503ee39b6f155ddacd6afafe90c4cb2
Downloading https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/89de1d44f2c059b266f22c9cc9124ddc4cd0987a
[302] https://api.github.com/repos/symfony/deprecation-contracts/zipball/ede224dcbc36138943a296107db2b8b2a690ac1c
Following redirect (1) https://codeload.github.com/symfony/deprecation-contracts/legacy.zip/ede224dcbc36138943a296107db2b8b2a690ac1c
[200] https://codeload.github.com/fzaninotto/Faker/legacy.zip/fc10d778e4b84d5bd315dad194661e091d307c6f
Writing /Users/user/.composer/cache/files/fzaninotto/faker/9ce5db56d4a444835180c00f5aa5f66a08fa7422.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-0576e9b0af6a80979c01d5e1cd953399
Downloading https://api.github.com/repos/symfony/mime/zipball/56261f89385f9d13cf843a5101ac72131190bc91
[200] https://codeload.github.com/tijsverkoyen/CssToInlineStyles/legacy.zip/dda2ee426acd6d801d5b7fd1001cde9b5f790e15
Writing /Users/user/.composer/cache/files/tijsverkoyen/css-to-inline-styles/1363e5d067dbac4a59a3d7e5a0d5d79709f1447d.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-41bb04ea93ff0f508d359856a3be81c9
Downloading https://api.github.com/repos/symfony/http-foundation/zipball/e0d853bddc2b2cfb0d67b0b4496c03fffe1d37fa
[302] https://api.github.com/repos/symfony/routing/zipball/95cf30145b26c758d6d832aa2d0de3128978d556
Following redirect (1) https://codeload.github.com/symfony/routing/legacy.zip/95cf30145b26c758d6d832aa2d0de3128978d556
[200] https://codeload.github.com/symfony/var-dumper/legacy.zip/46a942903059b0b05e601f00eb64179e05578c0f
Writing /Users/user/.composer/cache/files/symfony/var-dumper/efcb54ceab95cb968e2851cae7140e7a82df0c6e.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-d9fceefefa6c68d26c12bda4f2429f2a
Downloading https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/bb09b1d8f8a35243195189ded0d41bdc798ac2fb
[200] https://codeload.github.com/schmittjoh/php-option/legacy.zip/b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3
Writing /Users/user/.composer/cache/files/phpoption/phpoption/86c8dbf17b8449647fed9374cf9ad0284d8e1845.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-e7fcc1a16fd85a4e9afa876700a8fb44
Downloading https://api.github.com/repos/symfony/event-dispatcher/zipball/7b738a51645e10f864cc25c24d232fb03f37b475
[200] https://codeload.github.com/voku/portable-ascii/legacy.zip/a3801f5facf187a28cc2cae7b98a540c36406dc4
Writing /Users/user/.composer/cache/files/voku/portable-ascii/2cf637d34c02da1d11f3e6597e0a9e5813c7c2df.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-ae7555b4360693e4e8fe28cf2982d7ab
Downloading https://api.github.com/repos/symfony/error-handler/zipball/7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896
[200] https://codeload.github.com/vlucas/phpdotenv/legacy.zip/fbb6a5f65512f21d0db9e21bd49e67f70a9bbd5e
Writing /Users/user/.composer/cache/files/vlucas/phpdotenv/bc5531d65889686a81081d44d2c856ccd647c470.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-39d651a3fa10d7390ef8cc7f8f183245
Downloading https://api.github.com/repos/symfony/http-kernel/zipball/75ff5327a7d6ede3ccc2fac3ebca9ed776b3e85c
[200] https://codeload.github.com/sebastianbergmann/phpunit/legacy.zip/3ee1c1fd6fc264480c25b6fb8285edefe1702dab
Writing /Users/user/.composer/cache/files/phpunit/phpunit/20b4b8169fb86dc4fc1a7cf757a470c3098bad23.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-08940de34690840457fc0ee8664ff858
Downloading https://api.github.com/repos/egulias/EmailValidator/zipball/a6c8d7101b19a451c1707b1b79bbbc56e4bdb7ec
[302] https://api.github.com/repos/symfony/error-handler/zipball/7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896
Following redirect (1) https://codeload.github.com/symfony/error-handler/legacy.zip/7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896
[302] https://api.github.com/repos/symfony/polyfill-php72/zipball/95c50420b0baed23852452a7f0c7b527303ed5ae
Following redirect (1) https://codeload.github.com/symfony/polyfill-php72/legacy.zip/95c50420b0baed23852452a7f0c7b527303ed5ae
[302] https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/89de1d44f2c059b266f22c9cc9124ddc4cd0987a
Following redirect (1) https://codeload.github.com/symfony/polyfill-intl-idn/legacy.zip/89de1d44f2c059b266f22c9cc9124ddc4cd0987a
[302] https://api.github.com/repos/symfony/mime/zipball/56261f89385f9d13cf843a5101ac72131190bc91
Following redirect (1) https://codeload.github.com/symfony/mime/legacy.zip/56261f89385f9d13cf843a5101ac72131190bc91
[302] https://api.github.com/repos/symfony/http-foundation/zipball/e0d853bddc2b2cfb0d67b0b4496c03fffe1d37fa
Following redirect (1) https://codeload.github.com/symfony/http-foundation/legacy.zip/e0d853bddc2b2cfb0d67b0b4496c03fffe1d37fa
[302] https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/bb09b1d8f8a35243195189ded0d41bdc798ac2fb
Following redirect (1) https://codeload.github.com/symfony/event-dispatcher-contracts/legacy.zip/bb09b1d8f8a35243195189ded0d41bdc798ac2fb
[302] https://api.github.com/repos/symfony/event-dispatcher/zipball/7b738a51645e10f864cc25c24d232fb03f37b475
Following redirect (1) https://codeload.github.com/symfony/event-dispatcher/legacy.zip/7b738a51645e10f864cc25c24d232fb03f37b475
[200] https://codeload.github.com/symfony/deprecation-contracts/legacy.zip/ede224dcbc36138943a296107db2b8b2a690ac1c
Writing /Users/user/.composer/cache/files/symfony/deprecation-contracts/5a803c764b37155f3645c63803ece2b22ea17f1e.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-2a0ce7709685f9d875a75231fffcc9bc
Downloading https://api.github.com/repos/swiftmailer/swiftmailer/zipball/74e20ce4dad5011fb2c2cedefb76b2237f123c0e
[302] https://api.github.com/repos/symfony/http-kernel/zipball/75ff5327a7d6ede3ccc2fac3ebca9ed776b3e85c
Following redirect (1) https://codeload.github.com/symfony/http-kernel/legacy.zip/75ff5327a7d6ede3ccc2fac3ebca9ed776b3e85c
[200] https://codeload.github.com/symfony/css-selector/legacy.zip/0b5c07b516226b7dd32afbbc82fe547a469c5092
Writing /Users/user/.composer/cache/files/symfony/css-selector/3ad1bc7ae722684323a97a60d5fb3e170ba53399.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-32d0b119ab67d5ad80219fb518c462fe
Downloading https://api.github.com/repos/ramsey/collection/zipball/c7a212fb072674acd77f7f62041182b545f91bc5
[302] https://api.github.com/repos/egulias/EmailValidator/zipball/a6c8d7101b19a451c1707b1b79bbbc56e4bdb7ec
Following redirect (1) https://codeload.github.com/egulias/EmailValidator/legacy.zip/a6c8d7101b19a451c1707b1b79bbbc56e4bdb7ec
[200] https://codeload.github.com/symfony/routing/legacy.zip/95cf30145b26c758d6d832aa2d0de3128978d556
Writing /Users/user/.composer/cache/files/symfony/routing/a89d8936627262f3a3e791acda9cd445c86cb781.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-e4b4bb8dd75cd83e13f4b6852c8c1fec
Downloading https://api.github.com/repos/brick/math/zipball/3a0ac33048bcec1d826def08ae2c7a23e0e49ca1
[200] https://codeload.github.com/symfony/error-handler/legacy.zip/7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896
Writing /Users/user/.composer/cache/files/symfony/error-handler/d78481db99c41a0fe0b32eb0062dd88b4a0e14b8.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-e9128f92970aea4f9d9bcdaa84b2a12b
Downloading https://api.github.com/repos/ramsey/uuid/zipball/2c9644b1d0c2bc58732413252bcbb6dce2eb0e0e
[200] https://codeload.github.com/symfony/polyfill-php72/legacy.zip/95c50420b0baed23852452a7f0c7b527303ed5ae
Writing /Users/user/.composer/cache/files/symfony/polyfill-php72/e00f23b33203578899005cbf1fd1700f3c6003b0.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-082a56508321f7a537d544110073344b
Downloading https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24
[302] https://api.github.com/repos/swiftmailer/swiftmailer/zipball/74e20ce4dad5011fb2c2cedefb76b2237f123c0e
Following redirect (1) https://codeload.github.com/swiftmailer/swiftmailer/legacy.zip/74e20ce4dad5011fb2c2cedefb76b2237f123c0e
[200] https://codeload.github.com/symfony/polyfill-intl-idn/legacy.zip/89de1d44f2c059b266f22c9cc9124ddc4cd0987a
Writing /Users/user/.composer/cache/files/symfony/polyfill-intl-idn/d56347d40262e7a91b117cb430c300e1b6c1b1ab.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-8ff271a19cf213bcf56879f5338e955a
Downloading https://api.github.com/repos/laravel/framework/zipball/43bea00fd27c76c01fd009e46725a54885f4d2a5
[302] https://api.github.com/repos/ramsey/collection/zipball/c7a212fb072674acd77f7f62041182b545f91bc5
Following redirect (1) https://codeload.github.com/ramsey/collection/legacy.zip/c7a212fb072674acd77f7f62041182b545f91bc5
[200] https://codeload.github.com/symfony/http-foundation/legacy.zip/e0d853bddc2b2cfb0d67b0b4496c03fffe1d37fa
Writing /Users/user/.composer/cache/files/symfony/http-foundation/5787974bc375e299f1c0f7da9314e8a3c4ae599c.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-ad0d0f43794e1a07a9063ba54242089f
Downloading https://api.github.com/repos/orchestral/testbench/zipball/84cde6c8244c109823271a50a31725d1872fb503
[200] https://codeload.github.com/symfony/event-dispatcher-contracts/legacy.zip/bb09b1d8f8a35243195189ded0d41bdc798ac2fb
Writing /Users/user/.composer/cache/files/symfony/event-dispatcher-contracts/5db8ba3e6d0892c90168196e7bca5039662459ea.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-d2b2931ae571a579dd11c08fba1f9457
Downloading https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a
[200] https://codeload.github.com/symfony/event-dispatcher/legacy.zip/7b738a51645e10f864cc25c24d232fb03f37b475
Writing /Users/user/.composer/cache/files/symfony/event-dispatcher/b39d026e128f114d9fadc2910e9039682638d8e2.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-928fd50c74ab8394f9d3ef10aa8f8120
Downloading https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95
[302] https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a
Following redirect (1) https://codeload.github.com/phpDocumentor/ReflectionCommon/legacy.zip/63a995caa1ca9e5590304cd845c15ad6d482a62a
[200] https://codeload.github.com/symfony/http-kernel/legacy.zip/75ff5327a7d6ede3ccc2fac3ebca9ed776b3e85c
Writing /Users/user/.composer/cache/files/symfony/http-kernel/5fe51eae7f8e4cf1ec146ad46c06597497ca8e49.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-1fda4fd2a8ba99af58784458f935ae13
Downloading https://api.github.com/repos/symfony/yaml/zipball/76de473358fe802578a415d5bb43c296cf09d211
[200] https://codeload.github.com/symfony/mime/legacy.zip/56261f89385f9d13cf843a5101ac72131190bc91
Writing /Users/user/.composer/cache/files/symfony/mime/0dd9ce96dc1da16cf19fe8a5d1727ac58a8b3ad6.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-af225f1db02c7cd02e676d350757d05f
Downloading https://api.github.com/repos/spatie/phpunit-snapshot-assertions/zipball/04b53728875a94e9ff8bbccd3b06b21ef4ad3118
[302] https://api.github.com/repos/brick/math/zipball/3a0ac33048bcec1d826def08ae2c7a23e0e49ca1
Following redirect (1) https://codeload.github.com/brick/math/legacy.zip/3a0ac33048bcec1d826def08ae2c7a23e0e49ca1
[302] https://api.github.com/repos/symfony/yaml/zipball/76de473358fe802578a415d5bb43c296cf09d211
Following redirect (1) https://codeload.github.com/symfony/yaml/legacy.zip/76de473358fe802578a415d5bb43c296cf09d211
[200] https://codeload.github.com/egulias/EmailValidator/legacy.zip/a6c8d7101b19a451c1707b1b79bbbc56e4bdb7ec
Writing /Users/user/.composer/cache/files/egulias/email-validator/09b483d3c20f5d17b504dd8e4cc6973e2119b298.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-33716dbacd7344c4d1a0e1ce8057f147
[302] https://api.github.com/repos/ramsey/uuid/zipball/2c9644b1d0c2bc58732413252bcbb6dce2eb0e0e
Following redirect (1) https://codeload.github.com/ramsey/uuid/legacy.zip/2c9644b1d0c2bc58732413252bcbb6dce2eb0e0e
[302] https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24
Following redirect (1) https://codeload.github.com/php-fig/simple-cache/legacy.zip/753fa598e8f3b9966c886fe13f370baa45ef0e24
[200] https://codeload.github.com/phpDocumentor/ReflectionCommon/legacy.zip/63a995caa1ca9e5590304cd845c15ad6d482a62a
Writing /Users/user/.composer/cache/files/phpdocumentor/reflection-common/989820d4d3bc32a26c6e3cc70dd511d1b2102399.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-2fa09e0620466e6f3e7f949e71bd6932
[302] https://api.github.com/repos/laravel/framework/zipball/43bea00fd27c76c01fd009e46725a54885f4d2a5
Following redirect (1) https://codeload.github.com/laravel/framework/legacy.zip/43bea00fd27c76c01fd009e46725a54885f4d2a5
[302] https://api.github.com/repos/orchestral/testbench/zipball/84cde6c8244c109823271a50a31725d1872fb503
Following redirect (1) https://codeload.github.com/orchestral/testbench/legacy.zip/84cde6c8244c109823271a50a31725d1872fb503
[302] https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95
Following redirect (1) https://codeload.github.com/phpDocumentor/TypeResolver/legacy.zip/7462d5f123dfc080dfdf26897032a6513644fc95
[200] https://codeload.github.com/ramsey/collection/legacy.zip/c7a212fb072674acd77f7f62041182b545f91bc5
Writing /Users/user/.composer/cache/files/ramsey/collection/23027185fee3e9a294db6a906aa989802fa4b98b.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-f8a196d972681516aeefc3ae9f4af31d
[302] https://api.github.com/repos/spatie/phpunit-snapshot-assertions/zipball/04b53728875a94e9ff8bbccd3b06b21ef4ad3118
Following redirect (1) https://codeload.github.com/spatie/phpunit-snapshot-assertions/legacy.zip/04b53728875a94e9ff8bbccd3b06b21ef4ad3118
[200] https://codeload.github.com/swiftmailer/swiftmailer/legacy.zip/74e20ce4dad5011fb2c2cedefb76b2237f123c0e
Writing /Users/user/.composer/cache/files/swiftmailer/swiftmailer/b081b048bca19a969b947c3f634018ee897a1845.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-ea6cd9338753233e6e3d4f11f0b185a8
[200] https://codeload.github.com/brick/math/legacy.zip/3a0ac33048bcec1d826def08ae2c7a23e0e49ca1
Writing /Users/user/.composer/cache/files/brick/math/7edaae7be6bedb12051041fb84f9c630f2b7198e.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-e0e8d27062236c99d5c296229904c94c
[200] https://codeload.github.com/symfony/yaml/legacy.zip/76de473358fe802578a415d5bb43c296cf09d211
Writing /Users/user/.composer/cache/files/symfony/yaml/d2168066ed9d7ecf2dff24816ebaa6f18ee45dd4.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-4572cb06753a5a41e9cea3dfdf0811cb
[200] https://codeload.github.com/php-fig/simple-cache/legacy.zip/753fa598e8f3b9966c886fe13f370baa45ef0e24
Writing /Users/user/.composer/cache/files/psr/simple-cache/9f335208d3fdf2de80c126956b689c45cb83610d.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-d65856094104ce88b8efaafc75439d2b
[200] https://codeload.github.com/ramsey/uuid/legacy.zip/2c9644b1d0c2bc58732413252bcbb6dce2eb0e0e
Writing /Users/user/.composer/cache/files/ramsey/uuid/715bb1992ad9023e4d9281f4548b2a33e57b4824.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-317b1aa51ed9f31702c05b3a5985ad20
[200] https://codeload.github.com/phpDocumentor/TypeResolver/legacy.zip/7462d5f123dfc080dfdf26897032a6513644fc95
Writing /Users/user/.composer/cache/files/phpdocumentor/type-resolver/2c8696b6cc4243b079e2f016d2da20c00c38c3e0.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-2ba2aef3a9cbb93c5ce02bbd06bc210f
[200] https://codeload.github.com/orchestral/testbench/legacy.zip/84cde6c8244c109823271a50a31725d1872fb503
Writing /Users/user/.composer/cache/files/orchestra/testbench/d324315db7ee459ccb0ea261412fdc31cca2d679.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-e2752a81e97cbb13458f86f26a13cd15
[200] https://codeload.github.com/spatie/phpunit-snapshot-assertions/legacy.zip/04b53728875a94e9ff8bbccd3b06b21ef4ad3118
Writing /Users/user/.composer/cache/files/spatie/phpunit-snapshot-assertions/836fc0e8f486759e74ed08c1df5dc82274cefa4d.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-42e0e2bb1c9ff8c74c10174653525fe3
[200] https://codeload.github.com/laravel/framework/legacy.zip/43bea00fd27c76c01fd009e46725a54885f4d2a5
Writing /Users/user/.composer/cache/files/laravel/framework/b1e21344288792d2e04c69be4af6f217d8962861.zip into cache from /Users/user/src/laravel-ide-helper/vendor/composer/tmp-afab8cda8f933deb88aa17c7a5acbef7
  - Installing barryvdh/reflection-docblock (v2.0.6): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-863e94fcb66a31b9038bdc5724ca8f88' -d '/Users/user/src/laravel-ide-helper/vendor/composer/76df05d0'
  - Installing symfony/polyfill-php80 (v1.17.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-78c8f496ad75875e008803714b651b6a' -d '/Users/user/src/laravel-ide-helper/vendor/composer/037ce8af'
  - Installing symfony/process (v5.1.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-7552745d7878d3abdefd17547bd250f9' -d '/Users/user/src/laravel-ide-helper/vendor/composer/64316422'
  - Installing symfony/finder (v5.1.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-36762a4f9a785e0829c71f6628e16c18' -d '/Users/user/src/laravel-ide-helper/vendor/composer/94bf5972'
  - Installing symfony/filesystem (v2.7.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-42aa2d042621d69d343469ec554cf00b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/2979342e'
  - Installing symfony/polyfill-mbstring (v1.17.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-892ad45b29cea9e85524ad4f4ba9577c' -d '/Users/user/src/laravel-ide-helper/vendor/composer/b70f08c5'
  - Installing symfony/polyfill-intl-normalizer (v1.0.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-9bf60ca1cc7f8dd071b17853a5d6de61' -d '/Users/user/src/laravel-ide-helper/vendor/composer/6f5a6186'
  - Installing symfony/polyfill-intl-grapheme (v1.0.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-537c68c4712aa4c3f17b5ade2591e5a9' -d '/Users/user/src/laravel-ide-helper/vendor/composer/6e20e4e6'
  - Installing symfony/polyfill-ctype (v1.17.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-efa07adee7ea595e5defca095b96d21c' -d '/Users/user/src/laravel-ide-helper/vendor/composer/d76e748c'
  - Installing symfony/string (v5.1.0): Extracting archive
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-8d3e6fd62c8c838c20c7c3ef96125d63' -d '/Users/user/src/laravel-ide-helper/vendor/composer/5ab9cf34'
  - Installing symfony/service-contracts (v1.1.1): Extracting archive
  - Installing symfony/polyfill-php73 (v1.9.0): Extracting archive
  - Installing symfony/console (v5.1.0): Extracting archive
  - Installing seld/phar-utils (1.0.0): Extracting archive
  - Installing seld/jsonlint (1.4.0): Extracting archive
  - Installing psr/log (1.0.1): Extracting archive
  - Installing justinrainbow/json-schema (3.0.0): Extracting archive
  - Installing composer/xdebug-handler (1.1.0): Extracting archive
  - Installing composer/spdx-licenses (1.2.0): Extracting archive
  - Installing composer/semver (1.0.0): Extracting archive
  - Installing composer/ca-bundle (1.0.0): Extracting archive
  - Installing composer/composer (1.10.0): Extracting archive
  - Installing dflydev/markdown (v1.0.0): Extracting archive
  - Installing doctrine/lexer (v1.0.1): Extracting archive
  - Installing doctrine/annotations (v1.0): Extracting archive
  - Installing doctrine/cache (v1.0): Extracting archive
  - Installing doctrine/collections (v1.0): Extracting archive
  - Installing doctrine/inflector (1.4.0): Extracting archive
  - Installing doctrine/common (v2.7.1): Extracting archive
  - Installing doctrine/dbal (v2.6.0): Extracting archive
  - Installing dragonmantank/cron-expression (v3.0.0): Extracting archive
  - Installing hamcrest/hamcrest-php (v2.0.0): Extracting archive
  - Installing league/commonmark (1.3.0): Extracting archive
  - Installing league/flysystem (1.0.34): Extracting archive
  - Installing monolog/monolog (2.0.0): Extracting archive
  - Installing myclabs/deep-copy (1.9.1): Extracting archive
  - Installing symfony/translation-contracts (v2.0.0): Extracting archive
  - Installing symfony/translation (v5.0.0): Extracting archive
  - Installing nesbot/carbon (2.27.0): Extracting archive
  - Installing nikic/php-parser (v4.7.0): Extracting archive
  - Installing opis/closure (3.5.3): Extracting archive
  - Installing sebastian/version (2.0.1): Extracting archive
  - Installing sebastian/type (1.1.3): Extracting archive
  - Installing sebastian/resource-operations (2.0.1): Extracting archive
  - Installing sebastian/recursion-context (3.0.0): Extracting archive
  - Installing sebastian/object-reflector (1.1.1): Extracting archive
  - Installing sebastian/object-enumerator (3.0.3): Extracting archive
  - Installing sebastian/global-state (3.0.0): Extracting archive
  - Installing sebastian/exporter (3.1.1): Extracting archive
  - Installing sebastian/environment (4.2.2): Extracting archive
  - Installing sebastian/diff (3.0.2): Extracting archive
  - Installing sebastian/comparator (3.0.2): Extracting archive
  - Installing phpunit/php-timer (2.1.2): Extracting archive
  - Installing phpunit/php-text-template (1.2.1): Extracting archive
  - Installing phpunit/php-file-iterator (2.0.2): Extracting archive
  - Installing theseer/tokenizer (1.1.3): Extracting archive
  - Installing sebastian/code-unit-reverse-lookup (1.0.1): Extracting archive
  - Installing phpunit/php-token-stream (3.1.0): Extracting archive
  - Installing phpunit/php-code-coverage (7.0.7): Extracting archive
  - Installing phpdocumentor/reflection-docblock (2.0.0): Extracting archive
  - Installing doctrine/instantiator (1.2.0): Extracting archive
  - Installing phpspec/prophecy (1.8.1): Extracting archive
  - Installing phar-io/version (2.0.1): Extracting archive
  - Installing phar-io/manifest (1.0.3): Extracting archive
  - Installing phpunit/phpunit (8.5.0): Extracting archive
  - Installing fzaninotto/faker (v1.9.1): Extracting archive
  - Installing orchestra/testbench-core (v6.0.0): Extracting archive
  - Installing mockery/mockery (1.4.0): Extracting archive
  - Installing voku/portable-ascii (1.4.8): Extracting archive
  - Installing phpoption/phpoption (1.7.4): Extracting archive
  - Installing graham-campbell/result-type (v1.0.1): Extracting archive
  - Installing vlucas/phpdotenv (v5.0.0): Extracting archive
  - Installing symfony/css-selector (v2.7.0): Extracting archive
  - Installing tijsverkoyen/css-to-inline-styles (2.2.2): Extracting archive
  - Installing symfony/var-dumper (v5.1.0): Extracting archive
  - Installing symfony/deprecation-contracts (v2.1.0): Extracting archive
  - Installing symfony/routing (v5.1.0): Extracting archive
  - Installing symfony/polyfill-php72 (v1.9.0): Extracting archive
  - Installing symfony/polyfill-intl-idn (v1.10.0): Extracting archive
  - Installing symfony/mime (v5.1.0): Extracting archive
  - Installing symfony/http-foundation (v5.1.0): Extracting archive
  - Installing psr/event-dispatcher (1.0.0): Extracting archive
  - Installing symfony/event-dispatcher-contracts (v2.0.0): Extracting archive
  - Installing symfony/event-dispatcher (v5.0.0): Extracting archive
  - Installing symfony/error-handler (v5.1.0): Extracting archive
  - Installing symfony/http-kernel (v5.1.0): Extracting archive
  - Installing egulias/email-validator (2.1.10): Extracting archive
  - Installing swiftmailer/swiftmailer (v6.0.0): Extracting archive
  - Installing ramsey/collection (1.0.0): Extracting archive
  - Installing brick/math (0.8.0): Extracting archive
  - Installing ramsey/uuid (4.0.0): Extracting archive
  - Installing psr/simple-cache (1.0.0): Extracting archive
  - Installing psr/container (1.0.0): Extracting archive
  - Installing laravel/framework (v8.0.0): Extracting archive
  - Installing orchestra/testbench (v6.0.0): Extracting archive
  - Installing phpdocumentor/reflection-common (2.0.0): Extracting archive
  - Installing phpdocumentor/type-resolver (1.1.0): Extracting archive
  - Installing symfony/yaml (v4.4.0): Extracting archive
  - Installing spatie/phpunit-snapshot-assertions (3.0.0): Extracting archive
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/barryvdh/reflection-docblock'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/76df05d0'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-php80'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/037ce8af'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/process'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/64316422'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/finder'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/94bf5972'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/filesystem'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/2979342e'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-mbstring'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/b70f08c5'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-intl-normalizer'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/6f5a6186'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-intl-grapheme'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/6e20e4e6'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-ctype'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/d76e748c'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/string'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/5ab9cf34'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-2c3edabc55e24a23918a6a57f8adaf78' -d '/Users/user/src/laravel-ide-helper/vendor/composer/553e991c'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-8a9e6fb9b9b212c7050fde5f6afd6bdc' -d '/Users/user/src/laravel-ide-helper/vendor/composer/4d51d4ad'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-ca41b761ddf3b02dc443f13244ad6b65' -d '/Users/user/src/laravel-ide-helper/vendor/composer/46c51326'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-8c03c4700777f3741d9750ff95ed3c4f' -d '/Users/user/src/laravel-ide-helper/vendor/composer/16ce03fc'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-2ec77e6b72abe016de8137c942dbddce' -d '/Users/user/src/laravel-ide-helper/vendor/composer/365706c3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-92219a5eb7ab9be99c9c0b769d40af8b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/b1154455'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-bceee1074d8bc56fb73f600ce0719b8b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/d454b836'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-4ca57c8de8132c1175dc1edc0299cee8' -d '/Users/user/src/laravel-ide-helper/vendor/composer/ef2a615f'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-1b41bb86639b938db98cb1a2abea5e94' -d '/Users/user/src/laravel-ide-helper/vendor/composer/015d38b2'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-af3199162c3acd921a5d69fb961f3132' -d '/Users/user/src/laravel-ide-helper/vendor/composer/48900cd5'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/service-contracts'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/553e991c'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-php73'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/4d51d4ad'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/console'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/46c51326'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/seld/phar-utils'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/16ce03fc'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/seld/jsonlint'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/365706c3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/psr/log'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/b1154455'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/justinrainbow/json-schema'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/d454b836'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/xdebug-handler'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/ef2a615f'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/spdx-licenses'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/015d38b2'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/semver'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/48900cd5'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-ecde51ea5678eef29c49ac7f89a80dba' -d '/Users/user/src/laravel-ide-helper/vendor/composer/68dac66d'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-dafeefbc8b168cd12c4d06965b4e708b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/7a6a3da3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-65b8e5015d09b197eb7f43f36386339d' -d '/Users/user/src/laravel-ide-helper/vendor/composer/9f0701d4'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-9a60299ff6993c94354be985ce89e8ce' -d '/Users/user/src/laravel-ide-helper/vendor/composer/e1f7a7b0'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-36b530170892522363f8d75fc6616ef9' -d '/Users/user/src/laravel-ide-helper/vendor/composer/ca2af4fa'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-27d6c519248d7ac2dba4bfdc22225dfc' -d '/Users/user/src/laravel-ide-helper/vendor/composer/74ba93b7'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-68ff8716513d9567a1b544fbb7c28def' -d '/Users/user/src/laravel-ide-helper/vendor/composer/66ad484e'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-e3adc09e525b78a1a96d224c911278ef' -d '/Users/user/src/laravel-ide-helper/vendor/composer/d8585bfd'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-518e4b5619e63046a4f37bbb3c062d66' -d '/Users/user/src/laravel-ide-helper/vendor/composer/a69d7ba9'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-9a99896f967a74ad1a1af55813e54a6a' -d '/Users/user/src/laravel-ide-helper/vendor/composer/327a401b'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/ca-bundle'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/68dac66d'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/dflydev/markdown'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/9f0701d4'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/lexer'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/e1f7a7b0'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/annotations'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/ca2af4fa'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/cache'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/74ba93b7'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/collections'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/66ad484e'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/inflector'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/d8585bfd'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/common'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/a69d7ba9'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/dbal'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/327a401b'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-a41ba05a9779ca879d56d25fd2781d93' -d '/Users/user/src/laravel-ide-helper/vendor/composer/7128b296'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-9da765038966c9ce44d5d3c972876b5c' -d '/Users/user/src/laravel-ide-helper/vendor/composer/3ccc7ea0'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-80a4f9b874607017b18782066695fabf' -d '/Users/user/src/laravel-ide-helper/vendor/composer/82453864'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-cf98370a254d48c468c028754387ae3e' -d '/Users/user/src/laravel-ide-helper/vendor/composer/8bc3ad97'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-cb863cfc2fff46d298147a1ecabc9631' -d '/Users/user/src/laravel-ide-helper/vendor/composer/361aedc1'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-6b659160df6191cb6aad4c19476f79d3' -d '/Users/user/src/laravel-ide-helper/vendor/composer/c3ece9e5'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-7c127a583fa4b1f3d3a45f0f0657627b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/5eed0565'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-a9b2523d9eca3f089940d9ad646895fc' -d '/Users/user/src/laravel-ide-helper/vendor/composer/3354d0b0'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-33cf88dd2efe85d45974703d89e24665' -d '/Users/user/src/laravel-ide-helper/vendor/composer/77fde6d1'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/composer'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/7a6a3da3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/dragonmantank/cron-expression'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/7128b296'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/hamcrest/hamcrest-php'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/3ccc7ea0'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/league/commonmark'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/82453864'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/league/flysystem'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/8bc3ad97'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/monolog/monolog'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/361aedc1'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/myclabs/deep-copy'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/c3ece9e5'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/translation-contracts'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/5eed0565'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/translation'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/3354d0b0'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/nesbot/carbon'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/77fde6d1'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-1b9096718dd0b37dbf6525f2b9744923' -d '/Users/user/src/laravel-ide-helper/vendor/composer/190ad6f9'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-8e1d61cbbd9e76ae71931835fb71e865' -d '/Users/user/src/laravel-ide-helper/vendor/composer/16a33ed5'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-4b0655fdd856ed8cfe79538f7dbba6b2' -d '/Users/user/src/laravel-ide-helper/vendor/composer/5cd7b501'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-5ba13296261b9b0c97ecb8d9f91a2f4d' -d '/Users/user/src/laravel-ide-helper/vendor/composer/0fdc689c'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-ce2ce8378d63efeb4eab558ec884980e' -d '/Users/user/src/laravel-ide-helper/vendor/composer/bd0bdac8'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-b065ab2b6117707e2644c9eb819e4a7f' -d '/Users/user/src/laravel-ide-helper/vendor/composer/edef581c'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-082df432437eb421744d3c50a208ea13' -d '/Users/user/src/laravel-ide-helper/vendor/composer/99d7ac67'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-7310fa3362590e8d5dfdfdf512b17636' -d '/Users/user/src/laravel-ide-helper/vendor/composer/430a3759'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-9801c5494294555e32a3e3478bc154d3' -d '/Users/user/src/laravel-ide-helper/vendor/composer/8de872c1'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-1b7e57c78f4fb22cb6048b2b3436c191' -d '/Users/user/src/laravel-ide-helper/vendor/composer/12fdc86a'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/opis/closure'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/16a33ed5'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/version'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/5cd7b501'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/type'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/0fdc689c'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/resource-operations'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/bd0bdac8'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/recursion-context'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/edef581c'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/object-reflector'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/99d7ac67'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/object-enumerator'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/430a3759'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/global-state'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/8de872c1'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/exporter'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/12fdc86a'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-c9e2e35f9bd05b155156b790d9b9237d' -d '/Users/user/src/laravel-ide-helper/vendor/composer/0c1ba640'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-1fc16c5508d0c2ae592a80194945b589' -d '/Users/user/src/laravel-ide-helper/vendor/composer/485bcf28'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-6d6fe32ce91343aaa3a35f1d078cd5f7' -d '/Users/user/src/laravel-ide-helper/vendor/composer/953716c3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-80333f6b2008861eabf9c3f46b158293' -d '/Users/user/src/laravel-ide-helper/vendor/composer/8e3fde92'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-b371adb67c64d52ba579a99a957b3299' -d '/Users/user/src/laravel-ide-helper/vendor/composer/51c607c1'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-835dfd7927454b4a802c918292bb80ff' -d '/Users/user/src/laravel-ide-helper/vendor/composer/db488397'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-d6db8195338a5b43ce05ea34411fb9bc' -d '/Users/user/src/laravel-ide-helper/vendor/composer/73449180'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-0bf02b77adc3d7dc7cf6ca34f9f04e7e' -d '/Users/user/src/laravel-ide-helper/vendor/composer/1c3a29bc'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-9c1213ec09d490dcdae23d80cbb66532' -d '/Users/user/src/laravel-ide-helper/vendor/composer/1e78fdf3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/nikic/php-parser'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/190ad6f9'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/environment'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/0c1ba640'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/diff'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/485bcf28'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/comparator'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/953716c3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpunit/php-timer'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/8e3fde92'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpunit/php-text-template'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/51c607c1'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpunit/php-file-iterator'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/db488397'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/theseer/tokenizer'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/73449180'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/sebastian/code-unit-reverse-lookup'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/1c3a29bc'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpunit/php-token-stream'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/1e78fdf3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-8d1a83edfd2e67527ef31c56e7dd7b6f' -d '/Users/user/src/laravel-ide-helper/vendor/composer/e7da9f54'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-2052f0feda1654d9d8c90360df415c4f' -d '/Users/user/src/laravel-ide-helper/vendor/composer/40214026'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-eca7db77455a47dde1844cf3a3c0a600' -d '/Users/user/src/laravel-ide-helper/vendor/composer/84aa5cc6'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-4a6ebeb34599becd6954186217bc9604' -d '/Users/user/src/laravel-ide-helper/vendor/composer/2f2ab3ae'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-23130cc5d06711f77c8001c958b8b203' -d '/Users/user/src/laravel-ide-helper/vendor/composer/ddd18148'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-0ad1cd0209a297e9ce5d55362bc26243' -d '/Users/user/src/laravel-ide-helper/vendor/composer/b8a67ec3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-08940de34690840457fc0ee8664ff858' -d '/Users/user/src/laravel-ide-helper/vendor/composer/aa4f6ae5'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-0576e9b0af6a80979c01d5e1cd953399' -d '/Users/user/src/laravel-ide-helper/vendor/composer/e9d7fb4f'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-d503ee39b6f155ddacd6afafe90c4cb2' -d '/Users/user/src/laravel-ide-helper/vendor/composer/2106dfc3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-d623e9bd7eb3036261f4d9f2e9e599ad' -d '/Users/user/src/laravel-ide-helper/vendor/composer/d4875afb'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpdocumentor/reflection-docblock'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/40214026'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/doctrine/instantiator'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/84aa5cc6'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpspec/prophecy'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/2f2ab3ae'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phar-io/version'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/ddd18148'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phar-io/manifest'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/b8a67ec3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/orchestra/testbench-core'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/2106dfc3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/mockery/mockery'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/d4875afb'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-ae7555b4360693e4e8fe28cf2982d7ab' -d '/Users/user/src/laravel-ide-helper/vendor/composer/a25bf4bc'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-e7fcc1a16fd85a4e9afa876700a8fb44' -d '/Users/user/src/laravel-ide-helper/vendor/composer/21e41280'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-7e3e129263f34508cb9ab577debf31b0' -d '/Users/user/src/laravel-ide-helper/vendor/composer/9c2a89a4'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-39d651a3fa10d7390ef8cc7f8f183245' -d '/Users/user/src/laravel-ide-helper/vendor/composer/caa94870'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-32d0b119ab67d5ad80219fb518c462fe' -d '/Users/user/src/laravel-ide-helper/vendor/composer/2811bee0'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-41bb04ea93ff0f508d359856a3be81c9' -d '/Users/user/src/laravel-ide-helper/vendor/composer/d6162f68'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-d9fceefefa6c68d26c12bda4f2429f2a' -d '/Users/user/src/laravel-ide-helper/vendor/composer/46b37d97'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpunit/php-code-coverage'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/e7da9f54'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/fzaninotto/faker'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/e9d7fb4f'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/voku/portable-ascii'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/a25bf4bc'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpoption/phpoption'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/21e41280'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/graham-campbell/result-type'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/9c2a89a4'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/vlucas/phpdotenv'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/caa94870'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/css-selector'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/2811bee0'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/tijsverkoyen/css-to-inline-styles'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/d6162f68'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/var-dumper'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/46b37d97'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-2a0ce7709685f9d875a75231fffcc9bc' -d '/Users/user/src/laravel-ide-helper/vendor/composer/707b0260'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-e4b4bb8dd75cd83e13f4b6852c8c1fec' -d '/Users/user/src/laravel-ide-helper/vendor/composer/a27de792'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-082a56508321f7a537d544110073344b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/5fd3666e'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-8ff271a19cf213bcf56879f5338e955a' -d '/Users/user/src/laravel-ide-helper/vendor/composer/c3597768'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-af225f1db02c7cd02e676d350757d05f' -d '/Users/user/src/laravel-ide-helper/vendor/composer/5d97f3b6'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-ad0d0f43794e1a07a9063ba54242089f' -d '/Users/user/src/laravel-ide-helper/vendor/composer/639360a5'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-90d2cae1cbdcedcfde88690a93cc02f0' -d '/Users/user/src/laravel-ide-helper/vendor/composer/7ee1b895'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-d2b2931ae571a579dd11c08fba1f9457' -d '/Users/user/src/laravel-ide-helper/vendor/composer/24593ab9'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-928fd50c74ab8394f9d3ef10aa8f8120' -d '/Users/user/src/laravel-ide-helper/vendor/composer/95b3db65'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpunit/phpunit'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/aa4f6ae5'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/deprecation-contracts'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/707b0260'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/routing'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/a27de792'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-php72'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/5fd3666e'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/polyfill-intl-idn'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/c3597768'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/mime'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/5d97f3b6'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/http-foundation'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/639360a5'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/psr/event-dispatcher'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/7ee1b895'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/event-dispatcher-contracts'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/24593ab9'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/event-dispatcher'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/95b3db65'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-e9128f92970aea4f9d9bcdaa84b2a12b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/0ae04a3e'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-1fda4fd2a8ba99af58784458f935ae13' -d '/Users/user/src/laravel-ide-helper/vendor/composer/428c723e'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-33716dbacd7344c4d1a0e1ce8057f147' -d '/Users/user/src/laravel-ide-helper/vendor/composer/5aa0ae49'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-ea6cd9338753233e6e3d4f11f0b185a8' -d '/Users/user/src/laravel-ide-helper/vendor/composer/36c705ed'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-f8a196d972681516aeefc3ae9f4af31d' -d '/Users/user/src/laravel-ide-helper/vendor/composer/32a0bba3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-e0e8d27062236c99d5c296229904c94c' -d '/Users/user/src/laravel-ide-helper/vendor/composer/4cc184dc'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-317b1aa51ed9f31702c05b3a5985ad20' -d '/Users/user/src/laravel-ide-helper/vendor/composer/813648a3'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-d65856094104ce88b8efaafc75439d2b' -d '/Users/user/src/laravel-ide-helper/vendor/composer/36f0aa66'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-2991cf298304147772334f2014bed078' -d '/Users/user/src/laravel-ide-helper/vendor/composer/1bfbab3d'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-afab8cda8f933deb88aa17c7a5acbef7' -d '/Users/user/src/laravel-ide-helper/vendor/composer/fa70965c'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/error-handler'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/0ae04a3e'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/egulias/email-validator'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/5aa0ae49'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/ramsey/collection'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/32a0bba3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/brick/math'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/4cc184dc'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/ramsey/uuid'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/813648a3'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/psr/simple-cache'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/36f0aa66'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/psr/container'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/1bfbab3d'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-e2752a81e97cbb13458f86f26a13cd15' -d '/Users/user/src/laravel-ide-helper/vendor/composer/d5ebe110'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-2fa09e0620466e6f3e7f949e71bd6932' -d '/Users/user/src/laravel-ide-helper/vendor/composer/e2bee965'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-2ba2aef3a9cbb93c5ce02bbd06bc210f' -d '/Users/user/src/laravel-ide-helper/vendor/composer/86ba36f8'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-4572cb06753a5a41e9cea3dfdf0811cb' -d '/Users/user/src/laravel-ide-helper/vendor/composer/6a4bfa4c'
Executing async command (CWD): unzip -qq  '/Users/user/src/laravel-ide-helper/vendor/composer/tmp-42e0e2bb1c9ff8c74c10174653525fe3' -d '/Users/user/src/laravel-ide-helper/vendor/composer/9fc91e60'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/http-kernel'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/428c723e'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/swiftmailer/swiftmailer'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/36c705ed'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/orchestra/testbench'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/d5ebe110'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpdocumentor/reflection-common'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/e2bee965'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/phpdocumentor/type-resolver'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/86ba36f8'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/symfony/yaml'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/6a4bfa4c'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/spatie/phpunit-snapshot-assertions'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/9fc91e60'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/laravel/framework'
Executing command (CWD): rm -rf '/Users/user/src/laravel-ide-helper/vendor/composer/fa70965c'
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
> post-package-install: Symfony\Flex\Flex->record
> post-package-install: Symfony\Flex\Flex->checkForUpdate
Downloading https://packagist.org/downloads/
[201] https://packagist.org/downloads/
Package dflydev/markdown is abandoned, you should avoid using it. Use michelf/php-markdown instead.
Package fzaninotto/faker is abandoned, you should avoid using it. No replacement was suggested.
Package phpunit/php-token-stream is abandoned, you should avoid using it. No replacement was suggested.
Generating autoload files
> post-autoload-dump: Symfony\Flex\Flex->updateAutoloadFile
23 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
> post-update-cmd: Symfony\Flex\Flex->update
Symfony recipes are disabled: "symfony/flex" not found in the root composer.json


real	5m45.258s
user	5m37.629s
sys	0m5.460s

Probably the interesting part:

Updating dependencies
Generating rules
Resolving dependencies through SAT
Looking at all rules.
Something's changed, looking at all rules again (pass #5476)
Dependency resolution completed in 335.834 seconds
Analyzed 6336 packages to resolve dependencies
Analyzed 142116 rules to resolve dependencies
Generating rules
Resolving dependencies through SAT
Looking at all rules.

Dependency resolution completed in 0.000 seconds
Lock file operations: 99 installs, 0 updates, 0 removals

Maybe the environment on CI is so much slower that it simply exceeds the timeout.


We could submit this to composer but TBH, I find the chase for --prefer-lowest a bit of a waste of time for everyone.

mfn added a commit to mfn/laravel-ide-helper that referenced this pull request May 3, 2021
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of barryvdh#1076

See also:
- barryvdh#1216 (comment)
- barryvdh#1185 (comment)
@mfn mfn mentioned this pull request May 3, 2021
9 tasks
@mfn
Copy link
Collaborator

mfn commented May 3, 2021

I've submitted (i.e. re-submitted my previous attempt) for consideration: #1217

@netpok
Copy link
Contributor Author

netpok commented Jun 14, 2021

I would be happy to use this feature if possible, is there a blocking reason @barryvdh ?

barryvdh pushed a commit that referenced this pull request Jun 20, 2021
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of #1076

See also:
- #1216 (comment)
- #1185 (comment)
fatihdirikman added a commit to fatihdirikman/Laravel-IDE-Helper that referenced this pull request Jan 7, 2022
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of barryvdh/laravel-ide-helper#1076

See also:
- barryvdh/laravel-ide-helper#1216 (comment)
- barryvdh/laravel-ide-helper#1185 (comment)
@netpok
Copy link
Contributor Author

netpok commented Mar 1, 2022

I would be happy to use this feature if possible, is there a blocking reason @barryvdh?

@mfn
Copy link
Collaborator

mfn commented Mar 1, 2022

@netpok hmm, I guess it was just forgotten 😞

And we were side tracked back then with some unrelated errors popping up.

I've approved it once and see no reason to retract :) Can you please rebase with current master (there's a merge conflict) and we need to make sure all tests are 🟢

@netpok
Copy link
Contributor Author

netpok commented Mar 2, 2022

@mfn I rebased it

Copy link
Collaborator

@mfn mfn left a comment

Choose a reason for hiding this comment

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

@barryvdh LGTM!

Means also after merging we can close #1067 which is replaced by this one

src/Listeners/GenerateHelperAndMeta.php Show resolved Hide resolved
renaforsberg824 added a commit to renaforsberg824/ide-helper-laravel-developer that referenced this pull request Oct 5, 2022
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of barryvdh/laravel-ide-helper#1076

See also:
- barryvdh/laravel-ide-helper#1216 (comment)
- barryvdh/laravel-ide-helper#1185 (comment)
lisadeloach63 added a commit to lisadeloach63/ide-helper-reso-laravel that referenced this pull request Oct 7, 2022
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of barryvdh/laravel-ide-helper#1076

See also:
- barryvdh/laravel-ide-helper#1216 (comment)
- barryvdh/laravel-ide-helper#1185 (comment)
sadafrangian3 pushed a commit to sadafrangian3/ide-helper-laravel that referenced this pull request Oct 18, 2022
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of barryvdh/laravel-ide-helper#1076

See also:
- barryvdh/laravel-ide-helper#1216 (comment)
- barryvdh/laravel-ide-helper#1185 (comment)
smile1130 added a commit to smile1130/laravel-IDE that referenced this pull request Jun 16, 2023
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of barryvdh/laravel-ide-helper#1076

See also:
- barryvdh/laravel-ide-helper#1216 (comment)
- barryvdh/laravel-ide-helper#1185 (comment)
d3v2a pushed a commit to d3v2a/laravel-ide-helper that referenced this pull request Feb 16, 2024
IMHO it's impractical to expect this package to have to work with the
"first release of Laravel for any major release" even when there are
already sever more releases: no one is/should stick to that version.

This is a re-submit of barryvdh#1076

See also:
- barryvdh#1216 (comment)
- barryvdh#1185 (comment)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants