I am trying to install intervention/image. After running the composer update, I get:
If anyone else is on DreamHost (like me) or finds that the php.ini edits don't do what you want, you can try another route.
Here's the DreamHost Wiki page on PHP.ini, but I'll list the steps below as well.
/home/your_user_name), create a new folder called .php (notice the leading period)5.6.phprc (no extension). If there's already a phprc file in this folder, you can back it up by changing the filename to phprc.old.phprc to include the extensionphprc file.extension = fileinfo.soIf you have shared hosting, or you aren't comfortable with SSH or the command line, you can force DreamHost to pick up your new phprc settings.
Edit next to the domain you're working on.
at the bottom of the first section.If you're comfortable with the command line (and you're not using shared hosting), SSH into your server and run the following commands:
For Apache web serverssudo /etc/init.d/httpd2 restart
For Nginx web servers
sudo /etc/init.d/nginx stop
pkill -9 php
sudo /etc/init.d/nginx start
Your specific commands may be slightly different, but if you're comfortable with CLI then you probably know your specific command.