From 78cea5603da69043ce37ac90b2fdd61c5257a4cf Mon Sep 17 00:00:00 2001 From: slavielle Date: Thu, 23 Nov 2017 21:23:07 +0100 Subject: [PATCH 1/2] Remove PHP 5.4 from supported PHP versions --- .travis.yml | 1 - README.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a8a19cc..9ae65db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 5.4 - 5.5 - 5.6 - 7.0 diff --git a/README.md b/README.md index 4abc1e1..7dcbca4 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ echo $converter->convert('USD', 'NPR'); ## Requirements -* PHP version 5.4 or later +* PHP version 5.5 or later * Curl Extension (Optional) ## Installation From 90cee8d14cda0e32a92e15039c22af38e604b4b5 Mon Sep 17 00:00:00 2001 From: slavielle Date: Fri, 24 Nov 2017 12:35:56 +0100 Subject: [PATCH 2/2] Add php 5.5 as a minimal version into composer.json --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 4b4ff03..7ae3f8c 100644 --- a/composer.json +++ b/composer.json @@ -30,6 +30,7 @@ "zendframework/zend-cache": "To use Zend Cache component for caching" }, "require": { + "php": ">=5.5", "guzzlehttp/guzzle": "5.* || 6.*" } }