PHP code example of millancore / plase

1. Go to this page and download the library: Download millancore/plase 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/ */

    

millancore / plase example snippets


use Plase\Entity\Person;

$payer = new Person([
        'document' => 548794703,
        'documentType' => 'SSN',
        'firstName' => 'Sonny',
        'lastName' => 'Stokes',
        'company' => 'Prosacco, Feeney and Nitzsche',
        'emailAddress' => '[email protected]',
        '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());
 php
use Plase\PlasePayment;

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