PHP code example of dna / dnapayments-sdk-php
1. Go to this page and download the library: Download dna/dnapayments-sdk-php library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dna / dnapayments-sdk-php example snippets
[
'isTestMode' => true,
'scopes' => [
'allowHosted' => true,
'allowEmbedded' => true,
'allowSeamless' => true
],
'isEnableDonation' => false,
'autoRedirectDelayInMs' => 20000,
'paymentTimeoutInSeconds' => 600,
'allowSavingCards' => true,
'cards' => [
[
'merchantTokenId' => '3UGTOmzrP+Y8onM5wsQCc2eIjeZDpoBKqP3Mem80Re0fMQ==',
'panStar' => '***************1111',
'cardSchemeId' => 11,
'cardSchemeName' => 'VISA',
'cardName' => 'JOHN DOE',
'expiryDate' => '05/29',
'cscState' => '
[
'invoiceId' => $invoice_id,
'description' => 'Payment description if needed',
'amount' => $amount,
'currency' => $this->currency,
'language' => 'en-gb',
'paymentSettings' => [
'terminalId' => $this->terminal,
'returnUrl' => 'https://test-pay.dnapayments.com/checkout/success.html',
'failureReturnUrl' => 'https://test-pay.dnapayments.com/checkout/failure.html',
'callbackUrl' => 'https://pay.dnapayments.com/checkout',
'failureCallbackUrl' => 'https://testmerchant/order/1123/fail'
],
'customerDetails' => [
'email' => '[email protected] ',
'accountDetails' => [
'accountId' => 'uuid000001',
],
'billingAddress' => [
'firstName' => 'John',
'lastName' => 'Doe',
'addressLine1' => 'Fulham Rd',
'postalCode' => 'SW6 1HS',
'city' => 'London',
'country' => 'GB'
],
'deliveryDetails' => [
'deliveryAddress' => [
'firstName' => 'John',
'lastName' => 'Doe',
'addressLine1' => 'Fulham Rd',
'addressLine2' => 'Fulham',
'postalCode' => 'SW6 1HS',
'city' => 'London',
'phone' => '0475662834',
'country' => 'GB'
],
]
],
'orderLines' => [
[
'name' => 'Running shoe',
'quantity' => 1,
'unitPrice' => 24,
'taxRate' => 20,
'totalAmount' => 24,
'totalTaxAmount' => 4,
'imageUrl' => 'https://www.exampleobjects.com/logo.png',
'productUrl' => 'https://.../AD6654412.html'
]
]
];