From 18eb0c6be848e76ff9a72c21604bc41617f81862 Mon Sep 17 00:00:00 2001 From: Carsten Windler Date: Tue, 11 Sep 2018 00:15:31 +0200 Subject: [PATCH] Fix required php version --- .travis.yml | 1 - README.md | 2 +- composer.json | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index aff186c..9d8546b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ cache: - $HOME/.composer/cache php: - - 7.0 - 7.1 - 7.2 diff --git a/README.md b/README.md index 71b4992..3ade4c0 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Http Helper +# Http Helper [![Build Status](https://travis-ci.org/carstenwindler/http-helper.svg?branch=master)](https://travis-ci.org/carstenwindler/http-helper) A collection of helper functions for your everyday work with http requests and responses. diff --git a/composer.json b/composer.json index 52e190d..7b28769 100755 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": ">=7.0", + "php": ">=7.1", "zendframework/zend-diactoros": "^1.3", "symfony/http-foundation": "^2.7 |^3.3" },