There are a few similar questions as this throughout the site, but none of them are giving me the answer I'm looking for.
What I'm trying to do is install Composer via Git Bash on a Windows machine that has WAMP.
I'm using the following command:
curl -s http://getcomposer.org/installer | php
This is not working, as 'php' is not recognized. So I looked into the problem and I realized that Windows does not know what 'php' is, and I need to set an environment variable.
I go into the environment variable dialogue and enter 'php' as the variable and C:\wamp\bin\php\php5.3.8
as the value. Is this correct? Should I be targeting a specific file or the directory as a whole?
After doing this, I try the command again and it fails because it still does not recognize 'php'. I have also tried putting the file path into the command directly, but that didn't work either.
So I am curious as to what I am doing incorrectly. Is my path incorrect?