dna / dnapayments-sdk-php
PHP的DNA支付库
2.1.2
2024-08-16 08:19 UTC
Requires
- guzzlehttp/guzzle: ^7.8
Requires (Dev)
- phpunit/phpunit: ^11.1
README
要运行测试,请使用以下命令
./vendor/bin/phpunit ./tests
配置数据
[ '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' => 'required', // optional, hidden 'useStoredBillingData' => false ] ], 'disabledCardSchemes' => [ [ 'cardSchemeId' => 1, 'cardSchemeName' => 'Amex' ] ], 'locale' => [ 'targetLocale' => 'en_GB' ] ];
支付数据
[ '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' => 'test@dnapayments.com', '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' ] ] ];