다음 튜토리얼 칼럼인 composer에서는 일반적인 Composer 오류와 해결 방법을 소개합니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!
Composer 일반 오류 솔루션
작곡기 설치를 실행하는 중 오류가 발생했습니다. 설치 가능한 패키지 세트로 요구 사항을 확인할 수 없습니다. 이는 작곡가.json에 필요한 버전이 일치하지 않기 때문입니다.
전체 오류는 다음과 같습니다.
vagrant@homestead:/usr/share/nginx/html/laravel-blog$ sudocomposerinstall Loadingcomposerrepositorieswithpackage information Installingdependencies (includingrequire-dev) fromlockfile Yourrequirementscouldnot beresolvedto aninstallablesetofpackages. Problem 1 - Installationrequestfor doctrine/instantiator 1.0.3 -> satisfiablebydoctrine/instantiator[1.0.3]. - doctrine/instantiator 1.0.3 requiresphp ~5.3 -> yourPHPversion (7.0.3) doesnot satisfythatrequirement. Problem 2 - doctrine/instantiator 1.0.3 requiresphp ~5.3 -> yourPHPversion (7.0.3) doesnot satisfythatrequirement. - phpunit/phpunit-mock-objects 2.3.0 requiresdoctrine/instantiator ~1.0,>=1.0.1 -> satisfiablebydoctrine/instantiator[1.0.3]. - Installationrequestfor phpunit/phpunit-mock-objects 2.3.0 -> satisfiablebyphpunit/phpunit-mock-objects[2.3.0].
내 PHP 7 버전이 너무 높아서 composor.json에서 요구하는 버전을 충족하지 않는다는 메시지가 표시되지만 PHP 7에서 실행할 수 있어야 합니다. Composer는 다음과 같이 설정할 수 있습니다. 버전 일치를 무시합니다. 명령은
composerinstall --ignore-platform-reqs
or
composerupdate --ignore-platform-reqs
패키지를 정상적으로 설치하려면 작곡가 명령을 다시 실행하십시오.
경고 메시지가 표시되는 경우:
Cannotcreatecachedirectory /home/vagrant/.composer/cache/repo/https---packagist.org/, or directoryis not writable. Proceedingwithoutcache Cannotcreatecachedirectory /home/vagrant/.composer/cache/files/, or directoryis not writable. Proceedingwithoutcache
이것은 가상 머신에서 Composer가 실행될 때이며, 이 디렉터리에 쓰기 가능한 권한이 없다는 메시지가 표시됩니다. Composer는 다운로드한 패키지를 캐시할 수 없으므로 매번 다시 다운로드해야 합니다. 시간이 지나면 디렉토리가 쓰기 및 읽기 가능으로 변경됩니다.
sudo chmod -R 777 /home/vagrant/.composer/cache/files/
또한 가상 머신에서 작곡가를 국내 이미지로 설정하지 않으면 다운로드 속도가 매우 느려집니다. 실행:
composerconfig -g repo.packagistcomposerhttps://packagist.phpcomposer.com
위 내용은 일반적인 Composer 오류 및 해결 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!