From 6638e4d42ad664893b5c135c13b87d4734330e02 Mon Sep 17 00:00:00 2001 From: Roy Ronalds Date: Fri, 11 Dec 2015 09:37:19 -0500 Subject: [PATCH 1/4] README: Recommend php 5.4+ due to the various security issues with ssl/tls in OSes that only support php 5.3. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 592772e5..dde99758 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Omnipay -**An easy to use, consistent payment processing library for PHP 5.3+** +**An easy to use, consistent payment processing library for PHP 5.4+** [![Build Status](https://travis-ci.org/thephpleague/omnipay-common.png?branch=master)](https://travis-ci.org/thephpleague/omnipay-common) [![Latest Stable Version](https://poser.pugx.org/omnipay/omnipay/version.png)](https://packagist.org/packages/omnipay/omnipay) From f79d6761bd7fc234d2a238ef2133d4d1b34d1bec Mon Sep 17 00:00:00 2001 From: Roy Ronalds Date: Fri, 11 Dec 2015 09:39:07 -0500 Subject: [PATCH 2/4] Travis: Stop building against php 5.3 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c527189d..df7e9154 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 5.3 - 5.4 - 5.5 From a68505c49123cc82238fc32a13d9ca1d165a8dad Mon Sep 17 00:00:00 2001 From: Roy Ronalds Date: Fri, 11 Dec 2015 09:39:54 -0500 Subject: [PATCH 3/4] Travis: Start building against php 5.6 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index df7e9154..baa9391f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: php php: - 5.4 - 5.5 + - 5.6 env: - SYMFONY_VERSION="2.1" GUZZLE_VERSION="3.1" From 83df517ae0ff20492e9fd820148a90729c6323d5 Mon Sep 17 00:00:00 2001 From: Roy Ronalds Date: Fri, 11 Dec 2015 12:56:55 -0500 Subject: [PATCH 4/4] Travis: Start building against php 7 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index baa9391f..ab8072dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ php: - 5.4 - 5.5 - 5.6 + - 7 env: - SYMFONY_VERSION="2.1" GUZZLE_VERSION="3.1"