This repo contains the PHP client for Craftgate API.
- PHP 5.3 and later.
The following PHP extensions are required:
- curl
- json
Download Composer and run the following command under your project.
composer require craftgate/craftgateYou need to download the latest release and copy to your project. Then, include the autoload file as shown below. This file will autoload all related classes into your project on-demand.
require '/path/to/craftgate-php-client/autoload.php';To access the Craftgate API you'll first need to obtain API credentials (e.g. an API key and a secret key). If you don't already have a Craftgate account, you can signup at https://craftgate.io/
Once you've obtained your API credentials, you can start using Craftgate by instantiating a Craftgate\Craftgate with your credentials.
$craftgate = new \Craftgate\Craftgate(array(
'apiKey' => '<YOUR API KEY>',
'secretKey' => '<YOUR SECRET KEY>',
));By default the Craftgate client connects to the production API servers at https://api.craftgate.io. For testing purposes, please use the sandbox URL https://sandbox-api.craftgate.io.
$craftgate = new \Craftgate\Craftgate(array(
'apiKey' => '<YOUR API KEY>',
'secretKey' => '<YOUR SECRET KEY>',
'baseUrl' => 'https://sandbox-api.craftgate.io',
));Included in the project are a number of examples that cover almost all use-cases. Refer to the samples/ folder for more info.
If you've cloned this repo on your development machine and wish to run the examples you can run an example with the command ./vendor/bin/phpunit
Let's quickly review an example where we implement a credit card payment scenario.
For more examples covering almost all use-cases, check out the examples in the
samples/folder
$craftgate = new \Craftgate\Craftgate(array(
'apiKey' => '<YOUR API KEY>',
'secretKey' => '<YOUR SECRET KEY>',
'baseUrl' => 'https://sandbox-api.craftgate.io',
));
$request = array(
'price' => 100,
'paidPrice' => 100,
'walletPrice' => 0,
'installment' => 1,
'currency' => \Craftgate\Model\Currency::TL,
'paymentGroup' => \Craftgate\Model\PaymentGroup::LISTING_OR_SUBSCRIPTION,
'conversationId' => '456d1297-908e-4bd6-a13b-4be31a6e47d5',
'card' => array(
'cardHolderName' => 'Haluk Demir',
'cardNumber' => '5258640000000001',
'expireYear' => '2044',
'expireMonth' => '07',
'cvc' => '000'
),
'items' => array(
array(
'externalId' => \Craftgate\Util\Guid::generate(),
'name' => 'Item 1',
'price' => 30
),
array(
'externalId' => \Craftgate\Util\Guid::generate(),
'name' => 'Item 2',
'price' => 50
),
array(
'externalId' => \Craftgate\Util\Guid::generate(),
'name' => 'Item 3',
'price' => 20
)
)
);
$response = $craftgate->payment()->createPayment($request);
var_dump($response);Mutating operations accept an optional idempotency key. Add a headerOptions entry to the request with an idempotencyKey inside it and the client sends it as the x-idempotency-key header, so a request can be safely retried (e.g. after a timeout) without the operation being performed twice — the server returns the result of the first request when it sees a repeated key.
headerOptions is a reserved request key, accepted on any request:
$response = $craftgate->payment()->createPayment(array(
'price' => 100.0,
'paidPrice' => 100.0,
'currency' => Currency::TRY,
'paymentGroup' => PaymentGroup::LISTING_OR_SUBSCRIPTION,
'headerOptions' => array('idempotencyKey' => uniqid('', true)),
// ... other fields
));Operations whose parameters live in the URL path take a request array as well, so they can carry a key too:
$craftgate->payment()->expireCheckoutPayment(array(
'token' => '456d1297-908e-4bd6-a13b-4be31a6e47d5',
'headerOptions' => array('idempotencyKey' => uniqid('', true))
));Use a fresh key per distinct operation, and reuse the same key when retrying that operation.
The API honours the key on
POST,PATCHandDELETEonly. It is ignored onPUTendpoints, so retrying one of those is not de-duplicated.
headerOptions is sent as headers only — it is removed from the request before it is signed and sent, so it never reaches the request body, the query string, or the signature. Your array is left intact, so the same array can be passed again to retry.
For all contributions to this client please see the contribution guide here. By participating in this project, you agree to abide by our Code of Conduct.
If you discover a security vulnerability, please review our Security Policy for how to report it responsibly.
This project is licensed under the Apache License, Version 2.0 — see the LICENSE and NOTICE files for details.