When creating new Lumen project using:
lumen new blogb
New directory is being created but vendor folders not occurs in newly created folder.
That way when I try
php artisan serve
I get following errors (because there is no vendor folder):
Warning: require_once(C:\Users\user\Desktop\blogb\bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in C:\Users\user\Desktop\blogb\bootstrap\app.php on line 3
Fatal error: require_once(): Failed opening required 'C:\Users\user\Desktop\blogb\bootstrap/../vendor/autoload.php' (include_path='.;C:\php\pear') in C:\Users\user\Desktop\blogb\bootstrap\app.php on line 3
EDIT: laravel new blog command works ok, and application can be run, but problem happens when lumen new blog is being executed.