MolpayApi
, (*1)
Installation
1) Add this repository to composer.json, or run:, (*2)
$ composer require hotel-quickly/molpay-api:@dev
2) Register extension in your bootstrap.php, (*3)
$configurator->onCompile[] = function ($configurator, $compiler) {
$compiler->addExtension('molpayApi', new \HQ\MolpayApi\MolpayApiExtension());
};
Configuration
Add this to your config.neon, (*4)
molpayApi:
apiBaseUrl: https://www.onlinepayment.com.my/MOLPay
domain: abc
verifyKey: abc
Usage
/** @var \HQ\MolpayApi\Manager @autowire */
private $molpayManager;
$response = $this->molpayManager->send(RequestFactory::REVERSAL, function(Reversal $request) {
$request->setParam('txnID', '1234567890')
->setParam('domain', $request->getDomain())
->setParam('skey', $request->getSKey());
});
How to add new Request
- 1) Create new file and extends from
RequestAbstract class
- 2) Add new const of request name to
RequestFactory class
- 3) 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., (*5)
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:, (*6)
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software., (*7)
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., (*8)