Skip to content

Commit

Permalink
Merge pull request #123 from SwedbankPay/hotfix/bump-version
Browse files Browse the repository at this point in the history
Bump v5.5.0
  • Loading branch information
aait authored Mar 11, 2023
2 parents a109d9b + 49fa52c commit 9b00874
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Changelog
5.5.0 - 2023-03-11
Added
- Add UnscheduledPurchase for Paymentorder

5.4.1 - 2022-10-15
Fixed
- Fix deprecated warning in PHP 8
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "swedbank-pay/swedbank-pay-sdk-php",
"type": "library",
"description": "The Swedbank Pay SDK for PHP simplifies integrations against Swedbank Pay's API Platform by providing native PHP interface towards the REST API.",
"version": "5.4.1",
"version": "5.5.0",
"authors": [
{
"name": "Sammy Nordstr\u00f6m",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ public function testPurchaseRequest()
// phpcs:disable
if (file_exists(__DIR__ . '/../../../payments.ini')) {
$data = parse_ini_file(__DIR__ . '/../../../payments.ini', true);
return $data['MobilePay']['payment_id'];
if (isset($data['MobilePay'])) {
return $data['MobilePay']['payment_id'];
}
}
// phpcs:enable

Expand Down
3 changes: 3 additions & 0 deletions tests/acceptance/MobilepayCept.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
use Facebook\WebDriver\WebDriverExpectedCondition;
use Facebook\WebDriver\WebDriverSelect;

$scenario->skip('Temporary problem with Mobilepay test page');
$scenario->incomplete('Temporary problem with Mobilepay test page');

$I = new AcceptanceTester($scenario);
$I->wantTo('perform actions and see result');
$I->amOnPage('/mobilepay.php');
Expand Down

0 comments on commit 9b00874

Please sign in to comment.