I installed yii2 basic through the composer, after I did the composer install composer update - everything went well!
But the project does not start - I noticed that there is no vendor folder!
How can I pull up vendor after installation?
I installed yii2 basic through the composer, after I did the composer install composer update - everything went well!
But the project does not start - I noticed that there is no vendor folder!
How can I pull up vendor after installation?
If you managed to place the project in a directory like "... / my_project / basic", then you need to move all files from the basic folder to my_project (where composer.phar is located), replacing composer.json, and repeat the php commands composer.phar install and php composer.phar update. After that, you can delete the empty basic folder.
Source: https://ru.stackoverflow.com/questions/560753/
All Articles