From 77db56a26a398032e78701313bb01f8ea9a4eac5 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Thu, 20 Nov 2014 19:45:30 +0100 Subject: [PATCH] Installation instructions are not sufficient 1. Changed clone URL to HTTPS to allow non-github users to check out 2. Added instructions how to run composer and added it as requirement --- INSTALL.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 56aad60f..9ebb1816 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -2,7 +2,7 @@ Cachet is written in PHP and uses SQLite/MySQL for its database. It's really easy to get setup and there are various ways you can install. -You need at least PHP and the `php-mcrypt` extension installed to run Cachet. +You need at least PHP, [Composer](https://getcomposer.org/) and the `php-mcrypt` extension installed to run Cachet. 1. [Get a copy!](#get-a-copy) 2. [Configuring a database!](#configuring-a-database) @@ -15,7 +15,9 @@ The easiest way is to use Git to pull down the code. You'll need to put it into ```bash $ cd /var/www -$ git clone git@github.com:jbrooksuk/Cachet.git +$ git clone https://github.com/jbrooksuk/Cachet.git +$ cd Cachet +$ composer install ``` ## Configuring a database