다음 튜토리얼 칼럼은 composer에서 버전 매칭을 무시하도록 Composer를 설정하는 방법을 소개합니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!
Composer 소개
Composer 는 PHP용 종속성 관리 도구입니다. 이를 통해 프로젝트가 의존하는 코드 라이브러리를 선언할 수 있으며 프로젝트에 해당 라이브러리가 설치됩니다. Composer는 패키지 관리자가 아닙니다. 예, "패키지" 및 "라이브러리"가 포함되지만 프로젝트 내의 일부 디렉터리(예: 공급업체)에 설치되어 프로젝트별로 관리됩니다. 기본적으로 전역적으로 아무것도 설치하지 않습니다. 따라서 이것은 단지 종속성 관리일 뿐입니다.
작곡기 설치를 실행할 때 오류가 발생했습니다. 작곡가.json에 필요한 버전이 일치하지 않기 때문에 요구 사항을 설치 가능한 패키지 세트로 확인할 수 없습니다.
전체 오류는 다음과 같습니다.
vagrant@homestead:/usr/share/nginx/html/laravel-blog$ sudo composer install Loading composer repositories with package information Installing dependencies (including require-dev) from lock file Your requirements could not be resolved to an installable set of packages. Problem 1 - Installation request for doctrine/instantiator 1.0.3 -> satisfiable by doctrine/instantiator[1.0.3]. - doctrine/instantiator 1.0.3 requires php ~5.3 -> your PHP version (7.0.3) does not satisfy that requirement. Problem 2 - doctrine/instantiator 1.0.3 requires php ~5.3 -> your PHP version (7.0.3) does not satisfy that requirement. - phpunit/phpunit-mock-objects 2.3.0 requires doctrine/instantiator ~1.0,>=1.0.1 -> satisfiable by doctrine/instantiator[1.0.3]. - Installation request for phpunit/phpunit-mock-objects 2.3.0 -> satisfiable by phpunit/phpunit-mock-objects[2.3.0].
내 PHP 7 버전이 너무 높아서 composor.json에서 요구하는 버전을 충족하지 않는다는 메시지가 표시되지만 PHP 7에서 실행할 수 있어야 합니다. Composer는 다음과 같습니다. 버전 일치를 무시하도록 설정합니다. 명령은 다음과 같습니다.
composer install --ignore-platform-reqs or composer update --ignore-platform-reqs
패키지를 정상적으로 설치하려면 작곡가 명령을 다시 실행하십시오.
경고 메시지가 표시되는 경우:
Cannot create cache directory /home/vagrant/.composer/cache/repo/https---packagist.org/, or directory is not writable. Proceeding without cache Cannot create cache directory /home/vagrant/.composer/cache/files/, or directory is not writable. Proceeding without cache
이것은 가상 머신에서 Composer가 실행되는 경우이며, 이 디렉터리에 쓰기 가능한 권한이 없다는 메시지가 표시됩니다. Composer는 다운로드한 패키지를 캐시할 수 없으므로 매번 다시 다운로드해야 합니다. 디렉토리를 쓰기 가능하고 읽을 수 있도록 변경하면 됩니다.
sudo chmod -R 777 /home/vagrant/.composer/cache/files/
또한 가상 머신에서 작곡가를 국내 이미지로 설정하세요. 그렇지 않으면 다운로드 속도가 극도로 느려질 것입니다. 실행:
composer config -g repo.packagist composer https://packagist.phpcomposer.com
OK, 그러면 끝납니다.
위 내용은 버전 일치를 무시하도록 Composer를 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!