oveland / placetopay
PHP library to make a basic test pay with PlaceToPay
Requires
- filp/whoops: ^2.1
- yalesov/yaml: 2.*
Requires (Dev)
- larapack/dd: ^1.1
- phpunit/phpunit: ~5.0
This package is not auto-updated.
Last update: 2025-03-29 22:59:44 UTC
README
Installation
Install via composer
$ composer require oveland/placetopay
Or include on composer.json file:
"require": {
"oveland/placetopay": "^1.0"
}
How to use
use Oveland\Placetopay\PlaceToPay;
...
$params = [
'payer' => [
'documentType' => 'CC',
'document' => '1061743074',
'firstName' => 'Oscar',
'lastName' => 'Velásquez Andrade',
'company' => 'Oveland',
'emailAddress' => 'oscarivelan@gmail.co',
'address' => 'Cra 10 23 N 55',
'city' => 'Popayán',
'province' => 'Cauca',
'country' => 'CO',
'phone' => 'null',
'mobile' => '3145224313'
],
'buyer' => null,
'shipping' => null,
'bank' => [
'bankCode' => 1022,
'bankInterface' => 0,
'returnURL' => 'http://oveland.placetopay/',
'reference' => uniqid(rand(), true),
'description' => 'Pago Básico Oveland',
'language' => 'ES',
'currency' => 'COP',
'totalAmount' => 10,
'taxAmount' => 0,
'devolutionBase' => 0,
'tipAmount' => 0
],
'additionalData' => [
[
'name' => 'foo',
'value' => 'bar'
],
[
'name' => 'foo_1',
'value' => 'bar_1'
]
]
];
$placetopay = new PlaceToPay();
$transaction = $placetopay->createTransaction($params);
$status = $placetopay->getTransactionInformation($transaction->getTransactionID());
Methods
Bank List:
Get array of bank list:
$placetopay->getBankList();
Transaction:
Get return code:
$transaction->getReturnCode();
Get bank url redirect:
$transaction->getBankURL();
Get trazability code:
$transaction->getTrazabilityCode();
Get transaction cycle:
$transaction->getTransactionCycle();
Get transaction ID:
$transaction->getTransactionID();
Get session ID:
$transaction->getSessionID();
Get bank currency:
$transaction->getBankCurrency();
Get bank factor:
$transaction->getBankFactor();
Get response code:
$transaction->getResponseCode();
Get response reason code:
$transaction->getResponseReasonCode();
Get response reason text:
$transaction->getResponseReasonText();
Get array of all data:
$transaction->getData();
Status:
Get transaction ID:
$status->getTransactionID();
Get session ID:
$status->getSessionID();
Get reference:
$status->getReference();
Get request date:
$status->getRequestDate();
Get trazability code:
$status->getTrazabilityCode();
Get bank process date:
$status->getBankProcessDate();
Get bank on test:
$status->getOnTest();
Get return code:
$status->getReturnCode();
Get trazability code:
$status->getTrazabilityCode();
Get transaction cycle:
$status->getTransactionCycle();
Get transaction state:
$status->getTransactionState();
Get response code:
$status->getResponseCode();
Get response reason code:
$status->getResponseReasonCode();
Get response reason text:
$status->getResponseReasonText();
Get array of all data:
$status->getData();
Example
Please try the Live demo