1

我在 composer 从 packagist 下载 twitter/bootstrap 包 v2.2.2 时遇到问题。

错误消息是在尝试下载包之后:

[Composer\Downloader\TransportException]无法下载“ https://api.github.com/repos/twitter/bootstrap/zipball/v2.2.2 ”文件(HTTP/1.1 404 Not Found)

这有点奇怪,因为该版本确实存在。我在 Windows 上使用作曲家,我还没有遇到过这样的问题。

4

2 回答 2

2

随着 Bootstrap 3 的发布,他们稍微改变了 URL。

路径从 twitter/bootstrap 更改为 twbs/bootstrap

截至目前,当我写这篇文章时,新路径正在拉动 2.3.2,但我怀疑它很快就会开始拉动 3.x。

更多信息在这里:http: //blog.getbootstrap.com/2013/07/27/bootstrap-3-rc1/

于 2013-07-30T21:52:56.900 回答
1

我让它在我的 composer.lock 文件中使用以下 JSON:

 {
        "name": "twbs/bootstrap",
        "version": "v2.2.2",
        "target-dir": "twbs/bootstrap",
        "source": {
            "type": "git",
            "url": "git://github.com/twbs/bootstrap.git",
            "reference": "v2.2.2"
        },
        "dist": {
            "type": "zip",
            "url": "https://github.com/twbs/bootstrap/archive/v2.3.2.zip",
            "reference": "v2.2.2",
            "shasum": ""
        },
        "type": "library",
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "Apache-2.0"
        ],
        "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.",
        "homepage": "http://twitter.github.com/bootstrap/",
        "keywords": [
            "bootstrap",
            "css"
        ],
        "time": "2012-12-08 20:57:21"
    }

将所有“推特”替换为 twbs。我怀疑您也可以将版本更改为 2.3.2。

于 2014-02-08T01:16:44.073 回答