From fa9edb095dc1abdc6841d13c544ce3f3687c8feb Mon Sep 17 00:00:00 2001 From: Rasmus Bengtsson <2124386+rasmusbe@users.noreply.github.com> Date: Thu, 7 Nov 2019 13:59:14 +0100 Subject: [PATCH] Require php7.2 to support the changes in #85 --- .travis.yml | 1 - README.md | 4 ++-- composer.json | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 33ffa45..bcf280f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: php dist: xenial php: - - 7.1 - 7.2 - 7.3 diff --git a/README.md b/README.md index 1444b74..f380723 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Pushok -[![PHP >= 7.1](https://img.shields.io/badge/php-%3E%3D%207.1-8892BF.svg?style=flat-square)](https://php.net/) +[![PHP >= 7.2](https://img.shields.io/badge/php-%3E%3D%207.2-8892BF.svg?style=flat-square)](https://php.net/) [![Build Status][ico-travis]][link-travis] [![Latest Version on Packagist][ico-version]][link-packagist] [![Total Downloads][ico-downloads]][link-downloads] @@ -24,7 +24,7 @@ Pushok is a simple PHP library for sending push notifications to APNs. ## Requirements -* PHP >= 7.1 +* PHP >= 7.2 * lib-curl >= 7.46.0 (with http/2 support enabled) * lib-openssl >= 1.0.2e diff --git a/composer.json b/composer.json index ea3f483..11d4677 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ } ], "require": { - "php": "^7.1", + "php": "^7.2", "ext-curl": "*", "lib-curl": ">=7.46.0", "ext-openssl": "*",