Skip to content

Commit

Permalink
Merge pull request #8 from RichardCardGate/master
Browse files Browse the repository at this point in the history
New payment method: EPS.
  • Loading branch information
cardgate authored Sep 28, 2020
2 parents 15374f9 + 2b46ad6 commit 8cf33a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cardgate/cardgate-clientlib-php",
"description": "CardGate API client library for PHP",
"homepage": "https://github.com/cardgate/cardgate-clientlib-php",
"version": "1.1.13",
"version": "1.1.14",
"license": "MIT",
"authors": [
{
Expand All @@ -19,7 +19,8 @@
"afterpay", "bitcoin", "directdebit"
],
"require" : {
"php": "~5.6.0|~7.0.0|~7.1.0|~7.2.0|~7.3.0|~7.4.0"
"php": "~5.6.0|~7.0.0|~7.1.0|~7.2.0|~7.3.0|~7.4.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ final class Client {
/**
* Client version.
*/
const CLIENT_VERSION = "1.1.13";
const CLIENT_VERSION = "1.1.14";

/**
* Url to use for production.
Expand Down
5 changes: 5 additions & 0 deletions src/Method.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ final class Method {
*/
const GIFTCARD = 'giftcard';

/**
* EPS
*/
const EPS = 'eps';

/**
* The client associated with this payment method.
* @var Client
Expand Down

0 comments on commit 8cf33a7

Please sign in to comment.