Skip to content

Commit a77e135

Browse files
author
cardpay-ci
committed
Published latest changes
1 parent 832d7d2 commit a77e135

File tree

184 files changed

+1038
-188
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+1038
-188
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
The Unlimint API uses HTTP verbs and a RESTful endpoint structure. Request and response payloads are formatted as JSON.
33

44
- API version: 3.0
5-
- PHP SDK version: 2.26.1
5+
- PHP SDK version: 2.27.6
66

7-
For more information, please visit [https://integration.unlimint.com](https://integration.unlimint.com)
7+
For more information, please visit [https://integration.cardpay.com](https://integration.cardpay.com)
88

99
## Requirements
1010

@@ -133,6 +133,8 @@ composer install
133133
- [PaymentCallback](lib/model/PaymentCallback.php)
134134
- [PaymentGatewayCreationResponse](lib/model/PaymentGatewayCreationResponse.php)
135135
- [PaymentGatewayResponsePaymentData](lib/model/PaymentGatewayResponsePaymentData.php)
136+
- [PaymentMethodsList](lib/model/PaymentMethodsList.php)
137+
- [PaymentMethodsResponse](lib/model/PaymentMethodsResponse.php)
136138
- [PaymentPatchRequest](lib/model/PaymentPatchRequest.php)
137139
- [PaymentRequest](lib/model/PaymentRequest.php)
138140
- [PaymentRequestCard](lib/model/PaymentRequestCard.php)

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "cardpay/php-sdk-v3",
3-
"version": "2.26.3",
4-
"description": "PHP SDK for Cardpay API v3",
3+
"version": "2.27.6",
4+
"description": "PHP SDK for Unlimint API v3",
55
"keywords": [
6-
"cardpay",
6+
"unlimint",
77
"api",
88
"php",
99
"sdk"
1010
],
11-
"homepage": "https://integration.cardpay.com",
11+
"homepage": "https://integration.unlimint.com",
1212
"license": "MIT",
1313
"require": {
1414
"php": ">=5.6",

lib/ApiException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHP SDK for Cardpay API v3. All rights reserved.
4+
* PHP SDK for Unlimint API v3. All rights reserved.
55
*/
66

77
namespace Cardpay;

lib/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHP SDK for Cardpay API v3. All rights reserved.
4+
* PHP SDK for Unlimint API v3. All rights reserved.
55
*/
66

77
namespace Cardpay;
@@ -59,7 +59,7 @@ class Configuration
5959
*
6060
* @var string
6161
*/
62-
protected $userAgent = 'CardpaySdk/2.26.3/PHP';
62+
protected $userAgent = 'CardpaySdk/2.27.6/PHP';
6363

6464
/**
6565
* Debug switch (default set to false)
@@ -371,7 +371,7 @@ public static function toDebugReport()
371371
$report .= ' OS: ' . php_uname() . PHP_EOL;
372372
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
373373
$report .= ' OpenAPI Spec Version: 3.0' . PHP_EOL;
374-
$report .= ' SDK Package Version: 2.26.3' . PHP_EOL;
374+
$report .= ' SDK Package Version: 2.27.6' . PHP_EOL;
375375
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
376376

377377
return $report;

lib/HeaderSelector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHP SDK for Cardpay API v3. All rights reserved.
4+
* PHP SDK for Unlimint API v3. All rights reserved.
55
*/
66

77
namespace Cardpay;

lib/ObjectSerializer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHP SDK for Cardpay API v3. All rights reserved.
4+
* PHP SDK for Unlimint API v3. All rights reserved.
55
*/
66

77
namespace Cardpay;

lib/api/AuthApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHP SDK for Cardpay API v3. All rights reserved.
4+
* PHP SDK for Unlimint API v3. All rights reserved.
55
*/
66

77
namespace Cardpay\api;

lib/api/LimitsApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHP SDK for Cardpay API v3. All rights reserved.
4+
* PHP SDK for Unlimint API v3. All rights reserved.
55
*/
66

77
namespace Cardpay\api;

lib/api/MobileApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHP SDK for Cardpay API v3. All rights reserved.
4+
* PHP SDK for Unlimint API v3. All rights reserved.
55
*/
66

77
namespace Cardpay\api;

0 commit comments

Comments
 (0)