From f647949f0eb63a4474aac0af6bd675e8f970ea9d Mon Sep 17 00:00:00 2001 From: Simon Verraest Date: Wed, 12 Feb 2020 14:19:26 +0000 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 477f5fa..486ef05 100755 --- a/README.md +++ b/README.md @@ -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 ]; @@ -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 ];