From 215d90a17f8698bd21c6dec0e5ff11de8f3d6404 Mon Sep 17 00:00:00 2001 From: Evert Pot Date: Tue, 12 Jan 2016 17:30:57 -0500 Subject: [PATCH 1/2] Explicitly not installable on php 7 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index e11e31bc21..c10b1744a4 100644 --- a/composer.json +++ b/composer.json @@ -14,10 +14,10 @@ } ], "require": { - "php": ">=5.4.1", - "sabre/vobject": ">=3.3.4 <4", - "sabre/event" : "~2.0.0", - "sabre/http" : "~3.0.0", + "php": ">=5.4.1,<7", + "sabre/vobject": "^3.3.4", + "sabre/event" : "^2.0.0", + "sabre/http" : "^3.0.0", "ext-dom": "*", "ext-pcre": "*", "ext-spl": "*", From bb524f11e4a84d027e08f3a69e38c512a2c57dc3 Mon Sep 17 00:00:00 2001 From: Evert Pot Date: Tue, 12 Jan 2016 17:31:19 -0500 Subject: [PATCH 2/2] Removing hhvm build to conserve travis time --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1263b95d9f..2549900004 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ php: - 5.4 - 5.5 - 5.6 - - hhvm matrix: fast_finish: true