编译器安装例外



尝试运行composer install时出现此错误。我已经运行作曲家更新,我试图安装使用这个最新的锁文件。什么都没用。

Loading composer repositories with package information
Installing dependencies from lock file
  - Installing zendframework/zend-stdlib (2.3.0)
    Downloading: 100%
    Invalid zip file, retrying...
  - Installing zendframework/zend-stdlib (2.3.0)
    Downloading: 100%
    Invalid zip file, retrying...
  - Installing zendframework/zend-stdlib (2.3.0)
    Downloading: 100%
    Failed to download zendframework/zend-stdlib from dist: '/var/www/jetcharters.com/vendor/zendframework/zend-stdlib/Zend/Stdlib/79060e401f0aa9a175bb6adb812a0860' is not a zip archive.
    Now trying to download from source
  - Installing zendframework/zend-stdlib (2.3.0)
    Cloning d1c481b8a43f2f079b16d3567960ba539e9dacaa
    d1c481b8a43f2f079b16d3567960ba539e9dacaa is gone (history was rewritten?)

  [RuntimeException]
  Failed to execute git checkout 'd1c481b8a43f2f079b16d3567960ba539e9dacaa' -- && git reset --hard 'd1c481b8a43f2f079b16d3567960ba539e9dacaa' --
  fatal: reference is not a tree: d1c481b8a43f2f079b16d3567960ba539e9dacaa

我的作曲家。json文件没有直接引用zend,所以我想它是从另一个包的必需包?

{
    "name": "symfony/framework-standard-edition",
    "license": "MIT",
    "type": "project",
    "description": "The "Symfony Standard Edition" distribution",
    "autoload": {
        "psr-0": {"": "src/"}
    },
    "repositories": [{"type": "vcs", "url": "https://github.com/oleosjo/vzaar.git"}],
    "require": {
        "php": ">=5.3.3",
        "symfony/symfony": "~2.5",
        "doctrine/orm": "~2.2,>=2.2.3",
        "doctrine/doctrine-bundle": "~1.2",
        "twig/extensions": "~1.0",
        "symfony/assetic-bundle": "~2.3",
        "symfony/swiftmailer-bundle": "~2.3",
        "symfony/monolog-bundle": "~2.4",
        "sensio/distribution-bundle": "~2.3",
        "sensio/framework-extra-bundle": "~3.0",
        "sensio/generator-bundle": "~2.3",
        "incenteev/composer-parameter-handler": "~2.0",
        "friendsofsymfony/user-bundle": "~2.0@dev",
        "pugx/multi-user-bundle": "3.0.*@dev",
        "andheiberg/vzaar": "dev-master",
        "cocur/slugify": "@stable",
        "vresh/twilio-bundle": "dev-master",
        "gregwar/captcha-bundle": "dev-master",
        "KnpLabs/Gaufrette": "dev-master",
        "knplabs/knp-paginator-bundle": "~2.4",
        "friendsofsymfony/jsrouting-bundle": "@stable",
        "geoip2/geoip2": "~2.0",
        "maxmind/geoip": "dev-master",
        "cystbear/authorizenet-php-sdk": "dev-master",
        "knplabs/knp-snappy-bundle": "dev-master",
        "whiteoctober/tcpdf-bundle": "dev-master",
        "stof/doctrine-extensions-bundle": "~1.1@dev",
        "practo/sentry-bundle": "dev-master",
        "seferov/aws-bundle": "~1.1",
        "league/csv": "~7.0",
        "ob/highcharts-bundle": "~1.2"
    },
    "scripts": {
        "post-install-cmd": [
            "Incenteev\ParameterHandler\ScriptHandler::buildParameters",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile",
            "php app/console maxmind:geoip:update-data  http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz"
        ],
        "post-update-cmd": [
            "Incenteev\ParameterHandler\ScriptHandler::buildParameters",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
            "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile",
            "php app/console maxmind:geoip:update-data  http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz"
        ]
    },
    "config": {
        "bin-dir": "bin"
    },
    "extra": {
        "symfony-app-dir": "app",
        "symfony-web-dir": "web",
        "symfony-assets-install": "symlink",
        "incenteev-parameters": {
            "file": "app/config/parameters.yml"
        }
    }
}

要了解发生这种情况的原因,请查看bug https://github.com/zendframework/zend-stdlib/issues/6和https://github.com/zendframework/zend-stdlib/issues/12

我能够通过在composer.lock文件中用426b5396e89e7da2db9678bc9a0b57865f84fe0f替换散列d1c481b8a43f2f079b16d3567960ba539e9dacaa,然后重新运行composer install来解决这个问题。

清空编曲器缓存:

composer cc

相关内容

  • 没有找到相关文章

最新更新