PHP code example of expresspayments / expresspayments-php

1. Go to this page and download the library: Download expresspayments/expresspayments-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

expresspayments / expresspayments-php example snippets






$expressPayments = new \ExpressPayments\ExpressPaymentsClient('sk_test_BQokikJOvBiI2HlWgH4olfQ2');
$customer = $expressPayments->customers->create([
    'description' => 'example customer',
    'email' => '[email protected]',
    'payment_method' => 'pm_card_visa',
]);
echo $customer;

// set up your tweaked Curl client
$curl = new \ExpressPayments\HttpClient\CurlClient();
$curl->setTimeout(10); // default is \ExpressPayments\HttpClient\CurlClient::DEFAULT_TIMEOUT
$curl->setConnectTimeout(5); // default is \ExpressPayments\HttpClient\CurlClient::DEFAULT_CONNECT_TIMEOUT

echo $curl->getTimeout(); // 10
echo $curl->getConnectTimeout(); // 5

// tell ExpressPayments to use the tweaked client
\ExpressPayments\ApiRequestor::setHttpClient($curl);

// use the ExpressPayments API client as you normally would

// set up your tweaked Curl client
$curl = new \ExpressPayments\HttpClient\CurlClient([CURLOPT_PROXY => 'proxy.local:80']);
// tell ExpressPayments to use the tweaked client
\ExpressPayments\ApiRequestor::setHttpClient($curl);

\ExpressPayments\ExpressPayments::setLogger($logger);

$customer = $expressPayments->customers->create([
    'description' => 'example customer',
]);
echo $customer->getLastResponse()->headers['Request-Id'];

$curl = new \ExpressPayments\HttpClient\CurlClient([CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1]);
\ExpressPayments\ApiRequestor::setHttpClient($curl);

$customers = $expressPayments->customers->all([],[
    'api_key' => 'sk_test_...',
    'ep_account' => 'acct_...'
]);

$expressPayments->customers->retrieve('cus_123456789', [], [
    'api_key' => 'sk_test_...',
    'ep_account' => 'acct_...'
]);

\ExpressPayments\ExpressPayments::setCABundlePath("path/to/ca/bundle");

\ExpressPayments\ExpressPayments::setMaxNetworkRetries(2);

\ExpressPayments\ExpressPayments::setEnableTelemetry(false);

ExpressPayments::setApiVersion(ExpressPayments::getApiVersion() . '; feature_beta=v3');

\ExpressPayments\ExpressPayments::setAppInfo("MyAwesomePlugin", "1.2.34", "https://myawesomeplugin.info");
bash
composer 
bash
composer 
bash
./vendor/bin/phpunit tests/ExpressPayments/UtilTest.php
bash
./update_certs.php
bash
./vendor/bin/php-cs-fixer fix -v .