PHP code example of hotel-quickly / linepay-api

1. Go to this page and download the library: Download hotel-quickly/linepay-api 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/ */

    

hotel-quickly / linepay-api example snippets


$configurator->onCompile[] = function ($configurator, $compiler) {
    $compiler->addExtension('linepayApi', new \HQ\LinepayApi\LinepayApiExtension());
};

/** @var \HQ\LinepayApi\Manager @autowire */
private $linepayManager;

$response = $this->linepayManager->send(RequestFactory::CONFIRM_PAYMENT, function(ConfirmPayment $request) {
	$request->setUrlParam('transactionId', '2015049910000934410')
		->setParam('amount', '1.1')
		->setParam('currency', 'USD');
});