-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpurchase.php
52 lines (47 loc) · 1.7 KB
/
purchase.php
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/*
* This file is part of the WayForPay project.
*
* @link https://github.com/wayforpay/php-sdk
*
* @author Vladislav Lyshenko <vladdnepr1989@gmail.com>
* @copyright Copyright 2019 WayForPay
* @license https://opensource.org/licenses/MIT
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once __DIR__ . '/../vendor/autoload.php';
use WayForPay\SDK\Collection\ProductCollection;
use WayForPay\SDK\Credential\AccountSecretTestCredential;
use WayForPay\SDK\Domain\Client;
use WayForPay\SDK\Domain\Product;
use WayForPay\SDK\Wizard\PurchaseWizard;
use WayForPay\SDK\Domain\MerchantTypes;
// Use test credential or yours
$credential = new AccountSecretTestCredential();
//$credential = new AccountSecretCredential('account', 'secret');
$form = PurchaseWizard::get($credential)
->setOrderReference(sha1(microtime(true)))
->setAmount(0.01)
// ->setApiVersion(\WayForPay\SDK\Form\PurchaseForm::API_VERSION_2)
->setCurrency('USD')
->setOrderDate(new \DateTime())
->setMerchantDomainName('https://google.com')
// ->setMerchantTransactionType(MerchantTypes::TRANSACTION_AUTO)
// ->setMerchantTransactionType(MerchantTypes::TRANSACTION_AUTH) // hold
->setClient(new Client(
'John',
'Dou',
'john.dou@gmail.com',
'+12025550152',
'USA'
))
->setProducts(new ProductCollection(array(
new Product('test', 0.01, 1)
)))
->setReturnUrl('http://localhost:8000/examples/returnUrl.php')
->setServiceUrl('http://localhost:8000/examples/serviceUrl.php')
->getForm()
->getAsString();
echo '<html><body><h1>Pay Form</h1>' . $form . '</body></html>';