Composer php 编写器:无法将您的需求解析为一组可安装的包

Composer php 编写器:无法将您的需求解析为一组可安装的包,composer-php,Composer Php,我正在尝试安装composer软件包,但不断出现以下错误: Your requirements could not be resolved to an installable set of packages. Problem 1 - The requested package rondobley/extended-respect-validation could not be found in any version, there may be a typo in the package

我正在尝试安装composer软件包,但不断出现以下错误:

Your requirements could not be resolved to an installable set of packages.
Problem 1
    - The requested package rondobley/extended-respect-validation could not be found in any version, there may be a typo in the package name.
这是composer.json

{
    "minimum-stability": "dev",
    "require": {
        "rondobley/extended-respect-validation": "^1.0"
    }
}
以及composer安装-vvv的输出:

vagrant@wheezy:/code/test$ composer install -vvv
Reading ./composer.json
Loading config file ./composer.json
Checked CA file /etc/ssl/certs/ca-certificates.crt: valid
Executing command (/code/test): git branch --no-color --no-abbrev -v
Executing command (/code/test): git describe --exact-match --tags
Executing command (/code/test): git log --pretty="%H" -n1 HEAD
Failed to initialize global composer: Composer could not find the config file: /home/vagrant/.composer/composer.json
To initialize a project, please create a composer.json file as described in the https://getcomposer.org/ "Getting Started" section
Running 1.2.0 (2016-07-19 01:28:52) with PHP 5.5.38-1~dotdeb+7.1 on Linux / 3.2.0-4-amd64
Loading composer repositories with package information
Downloading https://packagist.org/packages.json
Writing /home/vagrant/.composer/cache/repo/https---packagist.org/packages.json into cache
Updating dependencies (including require-dev)
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-2013.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-2014.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-2015.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-2015-10.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-2016-01.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-2016-04.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-2016-07.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-archived.json from cache
Reading /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-latest.json from cache
Resolving dependencies through SAT
Dependency resolution completed in 0.001 seconds
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - The requested package rondobley/extended-respect-validation could not be found in any version, there may be a typo in the package name.

Potential causes:
 - A typo in the package name
 - The package is not available in a stable-enough version according to your minimum-stability setting
   see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.

Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
vagrant@wheezy:/code/test$composer安装-vvv
正在阅读./composer.json
正在加载配置文件。/composer.json
已检查CA文件/etc/ssl/certs/CA-certificates.crt:有效
正在执行命令(/code/test):git分支--无颜色--无abbrev-v
执行命令(/code/test):git descripe--exact match--tags
正在执行命令(/code/test):git log--pretty=“%H”-n1 HEAD
未能初始化全局编写器:编写器找不到配置文件:/home/vagrant/.composer/composer.json
要初始化项目,请按照中所述创建composer.json文件https://getcomposer.org/ “入门”部分
在Linux/3.2.0-4-amd64上使用PHP5.5.38-1~dotdeb+7.1运行1.2.0(2016-07-19 01:28:52)
使用包信息加载composer存储库
正在下载https://packagist.org/packages.json
将/home/vagrant/.composer/cache/repo/https--packagist.org/packages.json写入缓存
更新依赖项(包括需要开发人员)
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-2013.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-2014.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-2015.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-2015-10.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-2016-01.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-2016-04.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-2016-07.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-archive.json
从缓存读取/home/vagrant/.composer/cache/repo/https--packagist.org/p-provider-latest.json
通过SAT解决依赖关系
依赖项解析在0.001秒内完成
无法将您的需求解析为可安装的软件包集。
问题1
-在任何版本中都找不到请求的包rondobley/扩展尊重验证,包名称中可能有输入错误。
潜在原因:
-软件包名称中的输入错误
-根据您的最低稳定性设置,该软件包没有足够稳定的版本
有关更多详细信息,请参阅。
阅读了解更多常见问题。
这个包裹对我来说似乎很好:

这是一个新的软件包,今天刚刚发布,但已经过了几个小时。我也尝试了
composer clearcache
,但没有任何帮助。我在这里读过许多其他类似的问题,但运气不好。我刚开始发布composer软件包,所以我可能错过了一个简单的步骤

理想情况下,我希望安装^1.0版

提前感谢您的帮助。

请参阅-这是PackageGist上的暂时故障