From 3e967bfb78ac84ee5d7163bd41f2bbb4b1b764d7 Mon Sep 17 00:00:00 2001 From: Gordon Murray Date: Sat, 17 Jan 2015 20:04:32 +0000 Subject: [PATCH] Small updates to the install steps --- Installing-PHPCI.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Installing-PHPCI.md b/Installing-PHPCI.md index 23099ff..3a26b9d 100644 --- a/Installing-PHPCI.md +++ b/Installing-PHPCI.md @@ -1,11 +1,11 @@ ## Pre-requisites: * PHP 5.4+ -* A web server. We prefer nginx. +* A web server such as Apache or Nginx. We prefer nginx. * Composer (https://getcomposer.org/download/) * Git (http://git-scm.com/downloads) * A MySQL server to connect to (doesn't have to be on the same server.) * PHPCI needs to be able to run `exec()` and `shell_exec()`, so make sure these functions are not disabled -* PHP must have OpenSSL support available and enabled. +* PHP must have OpenSSL support enabled. ## Mac Installation Guides - Vanilla Mac Mavericks Server [Installation Guide](https://github.com/Block8/PHPCI/wiki/Vanilla-Mac-Mavericks-Server-Installation-Guide) @@ -16,7 +16,7 @@ * Download composer `curl -sS https://getcomposer.org/installer | php` * Get the project: `./composer.phar create-project block8/phpci phpci --keep-vcs --no-dev` * Retrieve any missing composer dependencies: Go inside the installation dir with `cd phpci`. Bring composer inside with `cp ../composer.phar .`. Finally, update composer dependencies: `./composer.phar install` and then `./composer.phar update` -* Install the project: `./console phpci:install` +* Install the project: `php ./console phpci:install` * Add a virtual host to your web server, pointing to the directory "public" where you cloned PHPCI into. * You'll need to set up rewrite rules to point all non-existent requests to PHPCI. * Set up a CRON or DAEMON job to automate the runs (see the FINALLY section below).