In my web app I've successfully installed several PHP Github repositories using Composer. The most recent one I installed on my localhost (using php composer.phar update blahblah/blahblah
) works great just like all the others. However, when I git push
ed my app to my live site, the blahblah/blahblah directory was empty.
I believe this is a Git issue and that my localhost has the blahblah master repo which isn't being shared with my remote, but I'm totally confused as to why this particular repository didn't install like all the other ones. As far as I know I did nothing different with Composer or the Git push/pull
I always do.
Thoughts?