From 6fe74d7073fa116199d5109d70545050f6ec3e9c Mon Sep 17 00:00:00 2001 From: Ciaran McNulty Date: Mon, 1 Feb 2016 20:56:05 +0000 Subject: [PATCH 1/2] Add PHP7 to build matrix --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 04004c5..ff3ff73 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,11 @@ language: php php: - 5.6 + - 7.0 install: - - composer install --prefer-source + - composer install --prefer-source --ignore-platform-reqs script: - bin/behat - - bin/behat --profile mink \ No newline at end of file + - bin/behat --profile mink From c5f11e7dc475d83b04ce93c46076b0524e88a211 Mon Sep 17 00:00:00 2001 From: Ciaran McNulty Date: Mon, 1 Feb 2016 21:01:15 +0000 Subject: [PATCH 2/2] Allow PHP 7 installs --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a3f6882..b42ab16 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require" : { - "php" : "~5.4", + "php" : "~5.4,~7.0", "behat/behat" : "~3.0", "symfony/process" : "~2.3" },