Composer is a tool for dependency management in PHP projects. It allows you to declare the dependent libraries your project needs and it will install them in your project for you. Composer is not a package manager.
I told this to declare my meaning from Composer
. Recently I have tried to run my first Google API project. There is a quickStart witch tells I need to use Composer
. So I tried to run composer using php composer.phar install
, but the only output I got was some question marks ???????
, and no dependencies where fetched. I haven't noticed anything special about composer itself, it seems that there must be something with .phar
files that I don't know. Is there anything special in the architecture of phar
files? What should I do?
I googled a lot, but there was nobody having the same problem as mine.