작성
·
149
답변 1
0
composer.json 의 설정이 뭔가 이상하군요. 강의 예제코드와 비교해보시길 바랍니다. autoload - psr4 는 패키지를 직접 제작할 때 주로 사용하시면 되고, 다른 사람의 패키지를 사용하는 경우에는 쓰지 않아도 됩니다.
https://github.com/php-courses-inflearn/php7-oop/tree/main/ch4
// composer.json
{
"require": {
"filp/whoops": "^2.7"
}
}
// index.php
<?php
require_once './vendor/autoload.php';
$whoops = new \Whoops\Run();
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler());
$whoops->register();
// ERROR!
echo $message;
답변 감사합니다!