I am trying to install yii2 on my Amazon Linux AMI instance, it requires the php-mbstring extension to work.
yii2
php-mbstring
When I tried to run sudo y
sudo y
It seems you have php 5.6 installed. You need to install mbstring for that particular version of php.
mbstring
php
Run sudo yum install php56-mbstring
sudo yum install php56-mbstring
After that it might be a good idea to restart apache (thanks! @hexicle), using sudo service httpd restart
sudo service httpd restart