2016-09-02 40 views
1

我試圖安裝一個作曲家包,我不斷收到以下錯誤:作曲:您的要求不能被解析到一個安裝包集合

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" 
    } 
} 

而且從作曲家輸出安裝-vvv:

[email protected]:/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. 

的包似乎是罰款我:

https://packagist.org/packages/rondobley/extended-respect-validation

這是一個新的軟件包,今天剛剛發佈,但已經好幾個小時。我也試過composer clearcache,這並沒有幫助。我在這裏讀了很多其他類似的問題,但都沒有運氣。我是發佈作曲家軟件包的新手,所以也許我錯過了一個簡單的步驟?

理想情況下,我想安裝版本^ 1.0。

感謝您的幫助提前。

回答

相關問題