From b0ab080e7feb14d6c9a075b7f7b7d4032b4f7bb0 Mon Sep 17 00:00:00 2001 From: fenric Date: Fri, 21 Dec 2018 12:54:27 +0300 Subject: [PATCH] Minimum supported PHP version 7.1 --- .travis.yml | 2 ++ README.md | 2 +- composer.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 32581e0..a18ff5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,9 @@ language: php matrix: include: + - php: 7.1 - php: 7.2 + - php: nightly fast_finish: true sudo: false diff --git a/README.md b/README.md index a1cbe68..c8b7c66 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Stream wrapper for PHP 7.2+ based on PSR-7 & PSR-17 +# Stream wrapper for PHP 7.1+ based on PSR-7 & PSR-17 [![Gitter](https://badges.gitter.im/sunrise-php/support.png)](https://gitter.im/sunrise-php/support) [![Build Status](https://api.travis-ci.com/sunrise-php/stream.svg?branch=master)](https://travis-ci.com/sunrise-php/stream) diff --git a/composer.json b/composer.json index 02aca6f..9ffe99e 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "homepage": "https://anatoly.fenric.ru/" }], "require": { - "php": "^7.2", + "php": "^7.1", "psr/http-factory": "^1.0", "psr/http-message": "^1.0" },