2016-09-02 5 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을 설치하고 싶습니다.

미리 도움을 주셔서 감사합니다.

답변