Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SP-1062 Release WHMCS v5.1.0 #95

Merged
merged 3 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions modules/gateways/bitpaycheckout.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* BitPay Checkout 5.0.0
* BitPay Checkout 5.1.0
*
* Within the module itself, all functions must be prefixed with the module
* filename, followed by an underscore, and then the function name. For this
Expand Down Expand Up @@ -149,8 +149,8 @@ function bitpaycheckout_link($config_params)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<?php

$client = new PosClient($bitpay_checkout_token, $bitpay_checkout_endpoint);
$platformInfo = 'BitPay_WHCMS_v5.1.0';
$client = new PosClient($bitpay_checkout_token, $bitpay_checkout_endpoint, $platformInfo);

// Check to make sure we don't already have a valid BitPay Invoice active
$checkDup = Capsule::table('_bitpay_checkout_transactions')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* BitPay Checkout IPN 5.0.0
* BitPay Checkout IPN 5.1.0
*
* This file verifies that the payment gateway module is active,
* validates an Invoice ID, checks for the existence of a Transaction ID,
Expand Down
2 changes: 1 addition & 1 deletion modules/gateways/bitpaycheckout/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"bitpay/sdk": "^9.0",
"bitpay/sdk": "^9.1",
"php": "^8.1 || ^8.2 || ^8.3"
}
}
100 changes: 50 additions & 50 deletions modules/gateways/bitpaycheckout/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading