millancore/plase

PlaSE - 连接到PSE的支付库

0.1.1 2018-12-22 18:28 UTC

This package is auto-updated.

Last update: 2024-09-13 05:05:12 UTC


README

PlaSE - 连接到PSE的支付库

通过Composer安装PlaSE

composer require millancore/plase

如何使用

use Plase\PlasePayment;

$plase = PlasePayment::fromConfig([
    'login' => 'LOGIN',
    'tranKey' => 'TRANKEY',
    'wsdl' => 'WSDL_ENPOINT',
    'location' => 'ENDPOINT'
]);

创建付款方、买方和发货方

use Plase\Entity\Person;

$payer = new Person([
        'document' => 548794703,
        'documentType' => 'SSN',
        'firstName' => 'Sonny',
        'lastName' => 'Stokes',
        'company' => 'Prosacco, Feeney and Nitzsche',
        'emailAddress' => 'trystan60@service.com',
        'address' => '42895 Kirlin Prairie Apt. 538 North Lulamouth',
        'city' => 'East Jeremyville',
        'province' => 'Texas',
        'country' => 'SA',
        'phone' => '(292) 888-5127 x93540',
        'mobile' => '212-474-4638 x541',
]);

获取银行集合

/** Get CollectionBank */
$bankList = $plase->getBankList();

一步创建新请求

use Plase\RequestBuilder;

$builder = new RequestBuilder([
        'bankCode' => 256,
        'bankInterface' => 0,
        'returnURL' => 'https://returnpayment.com/payment',
        'reference' => 1232312,
        'description' => 'Ut enim dicta fugit. Enim ut minima fugiat',
        'language' => 'PL',
        'currency' => 'TJS',
        'totalAmount' => 10,
        'taxAmount' => 2202855.15,
        'devolutionBase' => 1854213.41,
        'tipAmount' => 82.95,
        'payer' => Object Person ,
        'buyer' => Object Person,
        'shipping' => Object Person,
        'ipAddress' => '37.49.34.76',
        'userAgent' => 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5311 (KHTML, like Gecko) Chrome/37.0.862.0 Mobile Safari/5311',
        'additionalData' => ['name' => 'code', 'value' => 312321]
]);

/** Get PSEResponse */
$response = $plase->createTransaction($builder->getRequest());

逐步创建新请求

$builder = new RequestBuilder();

$request = RequestBuilder::create()
                ->bankCode(41231)
                ->bankInterface(1)
                ->returnURL('https://gateway.com/payment')
                ->payer(Object Person)
                ...
                ->getRequest();

/** Get PSEResponse */
$response = $plase->createTransaction($request);

从响应对象中获取交易信息

/** Get Transaction Entity */
$transaction = $plase->getTransaction($response->transactionID());

示例

示例

在laravel中集成PlaSE

https://github.com/millancore/laraplase

运行测试

composer test