From 3480a520d93ca499dc7fd4c93765a367d3e464ad Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Sat, 26 Oct 2019 14:00:45 +0200 Subject: [PATCH] Build system: Use PHP 5.3 to create pre-built release packages Otherwise Composer downloads a newer version of Twig which isn't compatible with PHP 5.3. Since we don't pin down specific versions of our dependencies, Composer-based installations might use newer versions of Twig which aren't compatible with PHP 5.3. Raising the PHP requirements requires a new major version, something that will definitly happen with Pico 3.0. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 255871d..5e5ecbc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,8 @@ jobs: # Deployment stage - stage: deploy - php: 5.6 + php: 5.3 + dist: precise sudo: required install: - '[ "$TRAVIS_PULL_REQUEST" == "false" ] || travis_terminate 0'