Skip to content

Commit 583cfee

Browse files
committed
Copyright update and PHP 5.6 added to travis
1 parent 19072cc commit 583cfee

11 files changed

+17
-12
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- 5.3
55
- 5.4
66
- 5.5
7+
- 5.6
78
- hhvm
89

910
before_script:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"psr-0": { "Omnipay\\Ecopayz\\" : "src/" }
1717
},
1818
"require": {
19-
"omnipay/common": "~2.0"
19+
"omnipay/common": "~2.3"
2020
},
2121
"require-dev": {
2222
"omnipay/tests": "~2.0"

src/Omnipay/Ecopayz/Gateway.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
* Ecopayz Gateway
88
*
99
* @author Alexander Fedra <contact@dercoder.at>
10-
* @copyright 2014 DerCoder
10+
* @copyright 2015 DerCoder
1111
* @license http://opensource.org/licenses/mit-license.php MIT
12-
* @version 1.0.0
1312
*/
1413
class Gateway extends AbstractGateway
1514
{

src/Omnipay/Ecopayz/Message/AbstractRequest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Ecopayz Abstract Request
66
*
77
* @author Alexander Fedra <contact@dercoder.at>
8-
* @copyright 2014 DerCoder
8+
* @copyright 2015 DerCoder
99
* @license http://opensource.org/licenses/mit-license.php MIT
1010
* @version 2.0.3 Ecopayz API Specification
1111
*/
@@ -97,7 +97,7 @@ public function setMerchantAccountNumber($value)
9797
}
9898

9999
/**
100-
* Get calcuated checksom
100+
* Get calculated checksum
101101
*
102102
* The purpose of the checksum is to authenticate the communicating parties
103103
* and to ensure the integrity of the data they send each other.
@@ -113,7 +113,7 @@ protected function calculateArrayChecksum(array $data)
113113
}
114114

115115
/**
116-
* Get calcuated checksom
116+
* Get calculated checksum
117117
*
118118
* 1. Prepare the whole XML document. Store the Merchant password instead of a checksum.
119119
* 2. If the XML has been created as a DOM, serialize it into a string.

src/Omnipay/Ecopayz/Message/CompletePurchaseRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Ecopayz Complete Purchase Request
88
*
99
* @author Alexander Fedra <contact@dercoder.at>
10-
* @copyright 2014 DerCoder
10+
* @copyright 2015 DerCoder
1111
* @license http://opensource.org/licenses/mit-license.php MIT
1212
* @version 2.0.3 Ecopayz API Specification
1313
*/

src/Omnipay/Ecopayz/Message/CompletePurchaseResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Ecopayz Complete Purchase Response
66
*
77
* @author Alexander Fedra <contact@dercoder.at>
8-
* @copyright 2014 DerCoder
8+
* @copyright 2015 DerCoder
99
* @license http://opensource.org/licenses/mit-license.php MIT
1010
* @version 2.0.3 Ecopayz API Specification
1111
*/

src/Omnipay/Ecopayz/Message/FetchTransactionRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Ecopayz Fetch Transaction Request
99
*
1010
* @author Alexander Fedra <contact@dercoder.at>
11-
* @copyright 2014 DerCoder
11+
* @copyright 2015 DerCoder
1212
* @license http://opensource.org/licenses/mit-license.php MIT
1313
* @version 2.0.3 Ecopayz API Specification
1414
*/

src/Omnipay/Ecopayz/Message/FetchTransactionResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Ecopayz Response
88
*
99
* @author Alexander Fedra <contact@dercoder.at>
10-
* @copyright 2014 DerCoder
10+
* @copyright 2015 DerCoder
1111
* @license http://opensource.org/licenses/mit-license.php MIT
1212
* @version 2.0.3 Ecopayz API Specification
1313
*/

src/Omnipay/Ecopayz/Message/PayoutRequest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55

66
/**
77
* Ecopayz Payout Request
8+
*
9+
* @author Alexander Fedra <contact@dercoder.at>
10+
* @copyright 2015 DerCoder
11+
* @license http://opensource.org/licenses/mit-license.php MIT
12+
* @version 2.0.3 Ecopayz API Specification
813
*/
914
class PayoutRequest extends AbstractRequest
1015
{

src/Omnipay/Ecopayz/Message/PurchaseRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* When the client chooses ecoPayz, the next step can be executed.
1111
*
1212
* @author Alexander Fedra <contact@dercoder.at>
13-
* @copyright 2014 DerCoder
13+
* @copyright 2015 DerCoder
1414
* @license http://opensource.org/licenses/mit-license.php MIT
1515
* @version 2.0.3 Ecopayz API Specification
1616
*/

src/Omnipay/Ecopayz/Message/PurchaseResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Ecopayz Purchase Response
1111
*
1212
* @author Alexander Fedra <contact@dercoder.at>
13-
* @copyright 2014 DerCoder
13+
* @copyright 2015 DerCoder
1414
* @license http://opensource.org/licenses/mit-license.php MIT
1515
* @version 2.0.3 Ecopayz API Specification
1616
*/

0 commit comments

Comments
 (0)