Merge pull request #81 from zachborboa/master

Fix PHP 5.3 build failing
This commit is contained in:
Zach Borboa
2014-10-19 03:59:08 -07:00
2 changed files with 2 additions and 2 deletions
-1
View File
@@ -9,7 +9,6 @@ php:
matrix:
allow_failures:
- php: 5.3
- php: 5.6
- php: hhvm
+2 -1
View File
@@ -1,5 +1,5 @@
if [[ "${TRAVIS_PHP_VERSION}" == "5.3" ]]; then
sudo add-apt-repository -y ppa:nginx/stable
sudo add-apt-repository -y ppa:nginx/development
sudo apt-get update
sudo apt-get install -y nginx
sudo apt-get install -y php5-fpm
@@ -18,6 +18,7 @@ server {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
}
}
EOF