From 3af9ee94f2d5c3f9407f589a729627fd1a89725f Mon Sep 17 00:00:00 2001 From: Evozi Date: Mon, 3 Feb 2020 12:41:47 +0800 Subject: [PATCH] Drop support for php 7.0 --- .travis.yml | 3 +-- composer.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1a421bc..7a73a22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,14 +2,13 @@ language: php php: - - 7.0 - 7.1 - 7.2 - 7.3 before_script: - curl -s http://getcomposer.org/installer | php - - php composer.phar install --dev + - php composer.phar install script: vendor/bin/phpunit --configuration phpunit.xml --coverage-text diff --git a/composer.json b/composer.json index 54523cc..cd96702 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ } ], "require": { - "php": ">=7.0", + "php": ">=7.1", "ext-simplexml": "*", "ext-json": "*", "ext-libxml": "*",