forked from payeezy/payeezy-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick-start.php
More file actions
29 lines (25 loc) · 822 Bytes
/
quick-start.php
File metadata and controls
29 lines (25 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
require_once __DIR__ . '/../vendor/autoload.php';
$client = new Payeezy_Client();
$client->setApiKey("y2sdDUJ0gGnxTyQFUGqDrutPHQ7LbeCS");
$client->setApiSecret("3472aaf343dce18899ed72af1c9f98f5c8b0912c0bfe3defe97cf2d158c0f96f");
$client->setMerchantToken("fdoa-0e8a514fecf2a834e0613becce6e98b30e8a514fecf2a834");
$client->setUrl("https://api-qa.payeezy.com/v1/transactions");
$card_transaction = new Payeezy_CreditCard($client);
$response = $card_transaction->purchase(
[
"merchant_ref" => "Astonishing-Sale",
"amount" => "1299",
"currency_code" => "USD",
"credit_card" => array(
"type" => "visa",
"cardholder_name" => "John Smith",
"card_number" => "4788250000028291",
"exp_date" => "1020",
"cvv" => "123"
)
]
);
echo "<pre>";
var_dump($response);
echo "</pre>";