Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sverraest committed Feb 12, 2020
1 parent ea066f0 commit f647949
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ use PomeloPayConnect\Client;
$client = new Client('apikey', 'appid');

$json = [
"provider" => "alipay", // Payment method enabled for your merchant account such as bcmc, alipay, card
"currency" => "MVR",
"amount" => 1000, // 10.00 MVR
"provider" => "card", // Payment method enabled for your merchant account such as bcmc, card, card
"currency" => "GBP",
"amount" => 1000, // 10.00 GBP
"redirectUrl" => "https://foo.bar/order/123" // Optional redirect after payment completion
];

Expand All @@ -104,8 +104,8 @@ use PomeloPayConnect\Client;
$client = new Client('apikey', 'appid');

$json = [
"currency" => "MVR",
"amount" => 1000, // 10.00 MVR
"currency" => "GBP",
"amount" => 1000, // 10.00 GBP
"redirectUrl" => "https://foo.bar/order/987" // Optional redirect after payment completion
];

Expand Down

0 comments on commit f647949

Please sign in to comment.