summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2018-01-04 16:20:35 +1000
committerSimon Holywell <[email protected]>2018-01-04 16:20:35 +1000
commite525c668055fc8c4c49f11fee30fde379c0200b4 (patch)
tree3750e5ff8db94f17085a096c787b61b6e1f214d2
parent1efb787c17192967f881831f3f5818e09b6d2642 (diff)
add in phar support for php 5.2
-rw-r--r--.travis.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 0b1b5e3..29920c0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,7 +13,11 @@ matrix:
env: PHPV=52
- php: 5.3
dist: precise
-before_script: |
+before_install: |
+ if [ "$PHPV" -eq 52 ]; then
+ pecl install phar
+ fi
+install: |
if [ "$PHPV" -ne 52 ]; then
composer install
else