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.
This commit is contained in:
Daniel Rudolf 2019-10-26 14:00:45 +02:00
parent 2a23edde4e
commit 3480a520d9
No known key found for this signature in database
GPG key ID: A061F02CD8DE4538

View file

@ -25,7 +25,8 @@ jobs:
# Deployment stage # Deployment stage
- stage: deploy - stage: deploy
php: 5.6 php: 5.3
dist: precise
sudo: required sudo: required
install: install:
- '[ "$TRAVIS_PULL_REQUEST" == "false" ] || travis_terminate 0' - '[ "$TRAVIS_PULL_REQUEST" == "false" ] || travis_terminate 0'