DEV Community

yesjin
yesjin

Posted on

 

ERROR:require(): Failed opening required 'C:\Users\dev14\code\00/vendor/autoload.php' (include_path='.;C:\php\pear'),2022-11-22

PHP Warning:  require(C:\Users\dev14\code\topski_admin/vendor/autoload.php): failed to open stream: No such file or directory in C:\Users\dev14\code\topski_admin\artisan on line 18
PHP Fatal error:  require(): Failed opening required 'C:\Users\dev14\code\topski_admin/vendor/autoload.php' (include_path='.;C:\php\pear') in C:\Users\dev14\code\topski_admin\artisan on line 18
Enter fullscreen mode Exit fullscreen mode

해결방안

composer install
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.