Questions about installing the existing project in Laravel

0

Hello everyone!

I started messing with Laravel today and until I can create a new project, but I need to open and run an existing project and I can not do it. It asks for the autoload.php file that is not in the project, nor is the vendor folder in the project. I have already installed the Database of this project without problems. I installed Composer, but I did not put the referrer URL. I use Wamp Server 3.0.6, with Apache 2.4.23, PHP 5.6.25 and MySQL 5.7.14.

Do I need to install anything else? Forgot to make some configuration? Please I need help.

    
asked by anonymous 05.12.2018 / 17:49

1 answer

0

If you do not have it, you have to have the composer installed on the computer and run the command:

composer install

Within the project folder, you set up access to your database in the .env file, then you use the command:

php artisan migrate

to popular your database and finally

php artisan serve

to run your project or create a virtual host for it.

You also have to have these php dependencies installed

OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension XML PHP Extension Ctype PHP Extension JSON PHP Extension BCMath PHP Extension

    
10.12.2018 / 20:16