| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
PHP SDK provides API options for integrating Solidgate’s payment orchestrator into your PHP applications.
Check our
| SDK for PHP contains | Table of contents |
|---|---|
|
src/solidgate/ – main library source code for development composer.json – script for managing dependencies and library imports |
Requirements Installation Usage Errors |
To start using the PHP SDK:
composer require solidgate/php-sdk{
"require": {
"solidgate/php-sdk": "~1.0"
}
}<?php
use SolidGate\API\Api;
$api = new Api('YourMerchantId', 'YourPrivateKey');
$response = $api->charge(['SomePaymentAttributes from API reference']);<?php
use SolidGate\API\Api;
$api = new Api('YourMerchantId', 'YourPrivateKey');
$dateFrom = new \DateTime("2019-01-01 00:00:00+00:00");
$dateTo = new \DateTime("2020-01-06 00:00:00+00:00");
$orderIterator = $api->getUpdatedOrders($dateFrom, $dateTo);
//$orderIterator = $api->getUpdatedChargebacks($dateFrom, $dateTo);
//$orderIterator = $api->getUpdatedAlerts($dateFrom, $dateTo);
foreach ($orderIterator as $order) {
// process one order
}
if ($api->getException() instanceof \Throwable) {
// save exception to log and retry request (if necessary)
}<?php
use SolidGate\API\Api;
$api = new Api('YourMerchantId', 'YourPrivateKey');
$response = $api->formResign(['SomePaymentAttributes from API reference']);
$response->toArray(); // pass to your FrontendHandle errors, using a try/catch block.
try {
$response = $api->charge([...]);
} catch (Throwable $e) {
error_log($e->getMessage());
}Looking for help? Contact us
Want to contribute? Submit a pull request
| Back | FazBrowse Home | New Git URL |