Symfony 运行git克隆https://github.com/bergie/create.git 以128失败

Symfony 运行git克隆https://github.com/bergie/create.git 以128失败,symfony,composer-php,Symfony,Composer Php,我正在安装Symfony-CMF() 当我更新composer时,它返回此错误 Loading composer repositories with package information Updating dependencies (including require-dev) Generating autoload files Updating the "app/config/parameters.yml" file Download or update create fatal: la r

我正在安装Symfony-CMF()

当我更新composer时,它返回此错误

Loading composer repositories with package information
Updating dependencies (including require-dev)
Generating autoload files
Updating the "app/config/parameters.yml" file
Download or update create
fatal: la referencia no es un árbol: a148ce9633535930d7b4b70cc1088102f5c5eb90
Script Symfony\Cmf\Bundle\CreateBundle\Composer\ScriptHandler::downloadCreateAndCkeditor handling the post-update-cmd event terminated with an exception

  [RuntimeException]                                                      
  Running git clone https://github.com/bergie/create.git failed with 128
这是我的composer.json

{
"name" : "myProject",
"description" : "Project Debug",
"autoload" : {
    "psr-0" : {
        "" : "src/"
    }
},
"repositories" : [{
        "type" : "package",
        "package" : {
            "name" : "jquery/jquery",
            "version" : "1.10.2",
            "dist" : {
                "url" : "http://code.jquery.com/jquery-1.10.2.js",
                "type" : "file"
            }
        }
    }
],
"minimum-stability" : "dev",
"provide" : {
    "lib-ICU" : "4.9"
},
"require" : {
    "sopinet/composergeneric" : "dev-master",
    "jms/payment-core-bundle" : "dev-master",
    "jms/payment-paypal-bundle" : "dev-master",
    "knplabs/knp-snappy-bundle" : "dev-master",
    "gregwar/captcha-bundle" : "dev-master",
    "wisembly/excelant": "*",
    "sonata-project/admin-bundle": "2.3.*@dev",
    "jms/translation-bundle": "dev-master",
    "lunetics/locale-bundle": "2.2.*",
    "symfony-cmf/symfony-cmf": "1.2.*",
    "symfony-cmf/simple-cms-bundle": "1.2.*",
    "symfony-cmf/create-bundle": "1.2.*",
    "jackalope/jackalope-doctrine-dbal": "1.1.*",
    "nelmio/alice": "~1.0"
},
"scripts": {
    "post-install-cmd": [
        "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
        "Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
    ],
    "post-update-cmd": [
        "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
        "Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
    ]
},
"config": {
    "bin-dir": "bin"
},
"extra": {
    "symfony-app-dir": "app",
    "symfony-web-dir": "web",
    "incenteev-parameters": {
        "file": "app/config/parameters.yml"
    },
    "branch-alias": {
        "dev-master": "1.2-dev"
    }
}
}

有人能帮我吗?我已经在其他项目上检查过了,效果很好。
谢谢。

请尝试rm-rf供应商/*并重新安装

这是您的linux机器吗?如果回答为“是”,请在命令之前添加sudo,或者在您要创建项目的目录中授予创建/写入权限。谢谢您,尝试sudo..@hizbul25,它没有工作…:(777)所有项目的权限,但错误仍然存在,知道吗?