hotel-quickly/linepay-api

There is no license information available for the latest version (1.0.2) of this package.

1.0.2 2015-05-26 10:40 UTC

This package is not auto-updated.

Last update: 2024-03-16 14:46:32 UTC


README

Build Status

Installation

  1. Add this repository to composer.json, or run:
$ composer require hotel-quickly/linepay-api:@dev
  1. Register extension in your bootstrap.php
$configurator->onCompile[] = function ($configurator, $compiler) {
    $compiler->addExtension('linepayApi', new \HQ\LinepayApi\LinepayApiExtension());
};

Configuration

Add this to your config.neon

linepayApi:
	apiBaseUrl: https://sandbox-api-pay.line.me/v1
    channelId: abc
    channelSecretKey: abc

Usage

/** @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');
});

How to add new Request

    1. Create new file and extends from RequestAbstract class
    1. Add new const of request name to RequestFactory class
    1. Inside created Request file, add necessary attributes such as $_path, $_method, $_mandatoryParams, and $_optionalParams

How to test

$ ./vendor/bin/tester tests/

The MIT License (MIT)

Copyright (c) 2014 Hotel Quickly Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.