symfony – Composer – 下载没有composer.json的git repos

前端之家收集整理的这篇文章主要介绍了symfony – Composer – 下载没有composer.json的git repos前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在Symfony 2.1中使用composer从 github库中删除供应商,这些库不是作曲家意识的,可能永远不会.

举些例子:
Old Deps文件

[jQuery]
git=git://github.com/jquery/jquery.git
version=1.8.1

[Mocha]
git=https://github.com/visionmedia/mocha.git

作曲家(不起作用)

"repositories": [
    {
        "type": "package","package": {
            "name": "jquery","version": "1.8.1","dist": {
                "url": "git://github.com/jquery/jquery.git","type": "git"
            }
        }
    }
],"require": {
    "jquery": "1.8.1"
}

解决方法

如果从git下载,则需要指定“源”包,而不是“dist”包.使用:
"repositories": [
    {
        "type": "package","source": {
                "url": "git://github.com/jquery/jquery.git","type": "git","reference": "1.8.1"
            }
        }
    }
],"require": {
    "jquery": "1.8.1"
}
原文链接:https://www.f2er.com/js/158331.html

猜你在找的JavaScript相关文章