Composer fails due to missing depends

,

I'm trying to make Atom, my IDE, work as a full-featured PHP IDE.

The best way to do this seems to be the 'php-integrator' package. (https://php-integrator.github.io/)

Researching this error it seems that Composer may be the problem. I'll attach a screenshot of an Ubuntu terminal command to show you the error.

I can't find the missing packages and really just want this to work painlessly. What can I do?

read the error message! it's telling you you need to install those extensions. easy to fix! :slight_smile:

edit
e.g,

$ sudo apt-cache search mbstring
#  enter password; get list of matching packages

$ sudo apt-get install php7.0-mbstring
# installed!
# repeat
1 Like

Thank you! I tried apt-cache search yesterday but for some reason I had more like today. I'll see if I can on the rest of the set up without help.

1 Like