From 8e9c933f6acdbf3036baacacc46379b6be2ba5a6 Mon Sep 17 00:00:00 2001 From: GlennJenkins Date: Tue, 13 Nov 2018 09:56:33 +0000 Subject: [PATCH 1/2] Fix unit test. --- tests/Omnipay/DataCash/GatewayTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Omnipay/DataCash/GatewayTest.php b/tests/Omnipay/DataCash/GatewayTest.php index b38f4f6..7741c3a 100644 --- a/tests/Omnipay/DataCash/GatewayTest.php +++ b/tests/Omnipay/DataCash/GatewayTest.php @@ -22,7 +22,7 @@ public function setUp() 'lastName' => 'User', 'number' => '4111111111111111', 'expiryMonth' => '12', - 'expiryYear' => '2016', + 'expiryYear' => '2025', 'cvv' => '123', 'issueNumber' => '5', 'startMonth' => '4', From 1788486fda5cc935f2c658c9f849370d3d92f30f Mon Sep 17 00:00:00 2001 From: GlennJenkins Date: Tue, 13 Nov 2018 10:01:10 +0000 Subject: [PATCH 2/2] Update versions of PHP that travis tests this driver on. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ca0329f..e659ff4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,11 @@ language: php php: - - 5.3 - 5.4 - 5.5 + - 5.6 + - 7.0 + - 7.1 env: - SYMFONY_VERSION="2.1" GUZZLE_VERSION="3.1"