Skip to main content

Posts

Showing posts from February, 2017

Install Cakephp with Composer on Linux

How to Install Cakephp with Composer on Linux System Here is the complete tutorial for how to install cakephp letest version with composer on linux system. If you dont have install composer then first you should install composer To install composer run the following commands one by one- php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('SHA384', 'composer-setup.php') === '55d6ead61b29c7bdee5cccfb50076874187bd9f21f65d8991d46ec5cc90518f447387fb9f76ebae1fbbacf329e583e30') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php -r "unlink('composer-setup.php');" OR you can install composer with curl by using this command curl -sS https://getcomposer.org/installer | php these commands will download the latest composer.phar in the current directory