Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rndoom04/comgate
Comgate payment gateway
https://github.com/rndoom04/comgate
Last synced: 11 days ago
JSON representation
Comgate payment gateway
- Host: GitHub
- URL: https://github.com/rndoom04/comgate
- Owner: Rndoom04
- License: mit
- Created: 2022-11-06T10:58:11.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-08T21:22:46.000Z (about 2 years ago)
- Last Synced: 2024-11-13T00:17:42.037Z (2 months ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rndoom04\Comgate
Comgate is payment gateway from the Czech republic. https://www.comgate.cz/
## Installation
Install Rndoom04\comgate with composer
```bash
composer require Rndoom04\comgate
```
## Usage/ExamplesFirst - init the library.
```php
use Rndoom04\comgate\comgate;$comgate = new comgate();
```Set the merchant and secret
```php
$comgate->setMerchant('mergantID', '*************');
```Create payment
```php
// Prepare data
$paymentData = (object)[
"price" => 10000, // 100.00 CZK should be 10000 (×100)
"curr" => "CZK", // Currency
"label" => "Product name", // Short desc. name
"refId" => "123456789", // Variable symbol
"method" => "ALL", // Method for payment
"test" => true, // false
"prepareOnly" => false // !important
];// Create payment, obtain transId and redirect URL
$pay = $comgate->createPayment($data->price, $data->curr, $data->label, $data->refId, $data->method, $data->test, $data->prepareOnly);// Process
if ($pay['code'] == 0) {
// OK, save $pay['transId'] for futher use
// var_dump($pay);
// Redirect
Header("Location: ".$pay['redirect']);
die();
} else {
// Something went wrong
// ... do some magic
}
```Get payment info
```php
// Get payment info
$info = $comgate->getPaymentInfo("some-payment-id");
var_dump($info);
```