Posts

Showing posts from June, 2019

How to install Composer on Local Server

Hi guys, today I am going to discuss how to install composer on local server. Go to link  https://getcomposer.org/download/  and download .exe file for windows. For other operating systems you can explore other packages from link  https://packagist.org/   You can also install composer with command line as following:- Open terminal in current directory and run following commands:- php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('sha384', 'composer-setup.php') === '48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php -r "unlink('composer-setup.php');"