I was facing the same issue after upgrading to ubuntu 16.04 which by default comes with php7. I was able to resolve it by running the following commands Run the update command:
1 2 |
sudo apt-get update |
They mycript is missing and needs to be installed:
1 2 |
<span class="hljs-selector-tag">sudo</span> <span class="hljs-selector-tag">apt-get</span> <span class="hljs-selector-tag">install</span> <span class="hljs-selector-tag">mcrypt</span> <span class="hljs-selector-tag">php7</span><span class="hljs-selector-class">.0-mcrypt</span> |
Run the upgrade command:
1 2 |
sudo apt-get upgrade |
Install the php-mbstring which is also missing:
1 2 |
sudo apt-get install php-mbstring |
Install the phpunit which is also missing:
1 2 |
sudo apt-get install phpunit |