0
The error that is actually returning in the console is the extension mbstring
that is missing. To carry out the installation of a project laravel
are needed some prerequisites on the server.
In your case since you are missing only the mbstring extension and are using a Redhat derivative, just run the command:
sudo yum install php-mbstring
It’s not an error, it’s just a warning... You should not run Composer as root, but if you want you can.
– edson alves
Actually the error itself is the mbstring extension that is missing
– sant0will
run the command
sudo yum install php-mbstring
to install– sant0will
Here are listed the dependencies of Laravel, you need to install some php extensions to work properly https://laravel.com/docs/5.8/#installation
– edson alves
@sant0will worked, thank you
– Gabriel Schmidt Cordeiro