PHPWord/bootstrap.php
:
<code>$vendorDirPath = realpath(__DIR__ . '/vendor'); if (file_exists($vendorDirPath . '/autoload.php')) { require $vendorDirPath . '/autoload.php'; } else { throw new Exception( sprintf( 'Could not find file \'%s\'. It is generated by Composer. Use \'install --prefer-source\' or \'update --prefer-source\' Composer commands to move forward.', $vendorDirPath . '/autoload.php' ) ); } </code>
여기: https://github.com/PHPOffice/...
vendor 폴더가 보이지 않나요?
무슨 일이에요?
PHPWord/bootstrap.php
:
<code>$vendorDirPath = realpath(__DIR__ . '/vendor'); if (file_exists($vendorDirPath . '/autoload.php')) { require $vendorDirPath . '/autoload.php'; } else { throw new Exception( sprintf( 'Could not find file \'%s\'. It is generated by Composer. Use \'install --prefer-source\' or \'update --prefer-source\' Composer commands to move forward.', $vendorDirPath . '/autoload.php' ) ); } </code>
여기: https://github.com/PHPOffice/...
vendor 폴더가 보이지 않나요?
무슨 일이에요?
Composer 설치 시 생성되어야 합니다.
작곡기 패키지 관리를 사용하지 않으면 공급업체가 없습니다.
Throw의 Exception이 명확하게 적혀있습니다
패키지 종속성 관리를 위해 Composer를 통해 프로젝트를 개발한 다음 이를 오픈소스로 만들어 github에 올리지만, 의존하는 타사 라이브러리를 버전 컨트롤러에 넣을 필요는 없습니다.
그냥 넣으면 됩니다. composer.json
파일을 올려주세요. read.me
파일은 일반적으로 composer install
,
을 실행할 수 있도록 설치 방법을 설명하므로 git에서는 vendor
을 무시하는 방법이 일반적입니다. vendor
디렉토리.gitignore
에 추가하세요.