Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuCh3n committed Nov 15, 2023
2 parents 1512e7b + 2760da8 commit 2911ab8
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 0 deletions.
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "buckaroo/sdk",
"description": "Buckaroo payment SDK",
"license": "MIT",
<<<<<<< HEAD
"version": "1.9.0",
=======
"version": "1.8.1",
>>>>>>> master
"type": "library",
"require": {
"php": ">=7.4|^8.0",
Expand Down
12 changes: 12 additions & 0 deletions example/transactions/in3.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@
'identifier' => 'Articlenumber1',
'type' => 'Physical',
'description' => 'Blue Toy Car',
<<<<<<< HEAD
'category' => 'test product1',
=======
'category' => 'test product',
>>>>>>> master
'vatPercentage' => '21',
'quantity' => '2',
'price' => '20.10',
Expand All @@ -69,7 +73,11 @@
'identifier' => 'Articlenumber2',
'type' => 'Physical',
'description' => 'Red Toy Car',
<<<<<<< HEAD
'category' => 'test product2',
=======
'category' => 'test product',
>>>>>>> master
'vatPercentage' => '21',
'quantity' => '1',
'price' => '10.10',
Expand All @@ -78,7 +86,11 @@
'identifier' => 'USPShippingID',
'type' => 'Physical',
'description' => 'UPS',
<<<<<<< HEAD
'category' => 'test product3',
=======
'category' => 'test product',
>>>>>>> master
'vatPercentage' => '21',
'quantity' => '1',
'price' => '2',
Expand Down
4 changes: 4 additions & 0 deletions example/transactions/in3old.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<?php

<<<<<<< HEAD
require_once '../bootstrap.php';
=======
require('../bootstrap.php');
>>>>>>> master

use Buckaroo\BuckarooClient;
use Buckaroo\Resources\Constants\Gender;
Expand Down
8 changes: 8 additions & 0 deletions example/transactions/payment_initiation.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<?php

<<<<<<< HEAD
require_once '../bootstrap.php';
=======
require('../bootstrap.php');
>>>>>>> master

use Buckaroo\BuckarooClient;

Expand All @@ -20,4 +24,8 @@
'invoice' => '', //Set invoice number of the transaction to refund
'originalTransactionKey' => '', //Set transaction key of the transaction to refund
'amountCredit' => 10,
<<<<<<< HEAD
]);
=======
]);
>>>>>>> master
6 changes: 6 additions & 0 deletions src/PaymentMethods/In3/Service/ParameterKeys/PhoneAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
class PhoneAdapter extends ServiceParametersKeysAdapter
{
protected array $keys = [
<<<<<<< HEAD
'mobile' => 'MobilePhone'
=======
'landLine' => 'Phone',
'mobile' => 'MobilePhone',
'phone' => 'Phone'
>>>>>>> master
];
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
class PhoneAdapter extends ServiceParametersKeysAdapter
{
protected array $keys = [
<<<<<<< HEAD
'mobile' => 'Phone'
=======
'mobile' => 'Phone',
>>>>>>> master
];
}

0 comments on commit 2911ab8

Please sign in to comment.