无法通过composer获取包需要

时间:2015-04-15 08:23:35

标签: php git composer-php

我想在我的项目中使用此程序包hslavich/simplesamlphp-bundle,该程序包依赖于simplesamlphp/simplesamlphp dev-master

如果我尝试添加这样的依赖:

composer require hslavich/simplesamlphp-bundle dev-master

我收到以下错误:

Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for hslavich/simplesamlphp-bundle dev-master -> satisfiable by hslavich/simplesamlphp-bundle[dev-master].
    - hslavich/simplesamlphp-bundle dev-master requires simplesamlphp/simplesamlphp dev-master -> no matching package found.

如果我git clone成功下载hslavich/SimplesamlphpBundle并使用composer update simplesamlphp包。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

"minimum-stability": "dev"添加到composer.json。您需要使用dev包版本实现。使用

"minimum-stability": "dev",
"prefer-stable" : true

如果您不希望它影响其他包没有严格的版本限制。