From 6194845917825fa399c47ef19a9120aa73f0d6cd Mon Sep 17 00:00:00 2001 From: Mark Boudreau Date: Wed, 30 Oct 2019 11:55:10 -0400 Subject: [PATCH] Allow HttpFoundation 2.x, 3.x, or 4.x. Update Travis to remove EOL versions of PHP --- .travis.yml | 12 ++++-------- composer.json | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 86232f5..ea4952d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,13 @@ language: php +dist: bionic php: - - 5.6 - - 5.5 - - 5.4 - - hhvm - - hhvm-nightly + - 7.1 + - 7.2 + - 7.3 matrix: fast_finish: true - allow_failures: - - php: hhvm - - php: hhvm-nightly install: - composer install --prefer-source diff --git a/composer.json b/composer.json index 7ad6440..591424c 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "require": { "peridot-php/leo": "~1.0", - "symfony/http-foundation": "~2.0" + "symfony/http-foundation": "~2.0|~3.0|~4.0" }, "require-dev": { "peridot-php/peridot-jumpstart": "~1.0"