This SDK makes it easy to integrate your PHP application with our Card Not Present and Card Present APIs.
- API Payment Processing
- Apple Pay & Google Pay
- Secure Card Storage & Customer Management
- Subscriptions / Recurring Billing Solutions
- Credit, Debit, Gift & Loyalty, and eCheck/ACH
- Minimize PCI compliance requirements with Hosted Payment Solutions
- 140+ Authorization Currencies & 16 Settlement Currencies
- 150+ Local Payment Methods Worldwide
- Account Updater
- Inbuilt Fraud Prevention Rules
- 3D Secure, AVS and CVV Checks
- 260+ Global Enterprise Fraud Rules
- Secure End-To-End Encryption
- PHP 8.0.0+
- OpenSSL 1.0.1+
- PHP Curl extension
- PHP DOM extension
- PHP OpenSSL extension
Installing the SDK into your solution is usually be done by either using Composer/Packagist, or by adding the project to your solution and referencing it directly.
To install via Composer/Packagist:
composer require globalpayments/php-sdk
To install via a direct download:
Download and unzip or, using Git, clone the repository from GitHub. See more on how to clone repositories.
git clone https://github.com/globalpayments/php-sdk
You can find the latest SDK documentation along with code examples and test cards on the GlobalPayments and GlobalPayments Developer Hubs.
In addition you can find working examples in the our example code repository.
Quick Tip: The included test suite can be a great source of code samples for using the SDK!
$card = new CreditCardData();
$card->number = "4111111111111111";
$card->expMonth = "12";
$card->expYear = "2025";
$card->cvn = "123";
try {
$response = $card->charge(129.99)
->withCurrency("EUR")
->execute();
$result = $response->responseCode; // 00 == Success
$message = $response->responseMessage; // [ test system ] AUTHORISED
} catch (ApiException $e) {
// handle errors
}The SDK supports creating GP-API access tokens with full control over token configuration and complete response field mapping.
use GlobalPayments\Api\Entities\Enums\Channel;
use GlobalPayments\Api\Entities\Enums\Environment;
use GlobalPayments\Api\Entities\Enums\IntervalToExpire;
use GlobalPayments\Api\ServiceConfigs\Gateways\GpApiConfig;
use GlobalPayments\Api\Services\GpApiService;
$config = new GpApiConfig();
$config->appId = 'your-app-id';
$config->appKey = 'your-app-key';
$config->environment = Environment::TEST;
$config->channel = Channel::CardNotPresent;
// Optional: control token expiration
$config->secondsToExpire = 3600;
$config->intervalToExpire = IntervalToExpire::ONE_HOUR;
// Optional: scope the token to specific permissions
$config->permissions = ['TRN_POST_Authorize', 'TRN_POST_Capture'];
// Optional: create a restricted token for Drop-in UI / Hosted Fields
$config->restrictedToken = true;
$accessTokenInfo = GpApiService::generateTransactionKey($config);| Field | Type | Description |
|---|---|---|
appId |
string | Application identifier (required) |
appKey |
string | Application key (required) |
secondsToExpire |
int | Token TTL in seconds (60–604800) |
intervalToExpire |
string | Token TTL as interval (WEEK, DAY, 1_HOUR, etc.) |
permissions |
array | Permission strings to scope the token |
restrictedToken |
bool | When true, masks account info in the response |
$accessTokenInfo->accessToken; // Bearer token string
$accessTokenInfo->tokenType; // "Bearer"
$accessTokenInfo->appId; // Application ID
$accessTokenInfo->appName; // Application name
$accessTokenInfo->merchantId; // Merchant ID (MER_...)
$accessTokenInfo->merchantName; // Merchant name
$accessTokenInfo->email; // Associated email
$accessTokenInfo->timeCreated; // ISO-8601 creation timestamp
$accessTokenInfo->secondsToExpire; // TTL in seconds
$accessTokenInfo->intervalToExpire; // TTL interval enum| Name | Number | Exp Month | Exp Year | CVN |
|---|---|---|---|---|
| Visa | 4263970000005262 | 12 | 2025 | 123 |
| MasterCard | 2223000010005780 | 12 | 2019 | 900 |
| MasterCard | 5425230000004415 | 12 | 2025 | 123 |
| Discover | 6011000000000087 | 12 | 2025 | 123 |
| Amex | 374101000000608 | 12 | 2025 | 1234 |
| JCB | 3566000000000000 | 12 | 2025 | 123 |
| Diners Club | 36256000000725 | 12 | 2025 | 123 |
During your integration you will want to test for specific issuer responses such as 'Card Declined'. Because our sandbox environments do not actually reach out to issuing banks for authorizations, there are specific transaction amounts and/or card numbers that will trigger gateway and issuing bank responses. Please contact your support representative for a complete listing of values used to simulate transaction AVS/CVV results, declines, errors, and other responses that can be caught in your code. Example error handling code:
try {
$response = $card->charge(129.99)
->withCurrency("EUR")
->execute();
} catch (BuilderException $e) {
// handle builder errors
} catch (ConfigurationException $e) {
// handle errors related to your services configuration
} catch (GatewayException $e) {
// handle gateway errors/exceptions
} catch (UnsupportedTransactionException $e) {
// handle errors when the configured gateway doesn't support
// desired transaction
} catch (ApiException $e) {
// handle all other errors
}All our code is open sourced and we encourage fellow developers to contribute and help improve it!
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Ensure SDK tests are passing
- Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
This project is licensed under the GNU General Public License v2.0. Please see LICENSE.md located at the project's root for more details.