PHP code example of opay-services / opay-sdk-php
1. Go to this page and download the library: Download opay-services/opay-sdk-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/ */
opay-services / opay-sdk-php example snippets
/**
* init config file
*/
class Config implements ConfigInterface
{
private $endpointBaseUrl = 'http://sandbox-cashierapi.opayweb.com';
private $pubKey = 'OPAYPUBxxxxxxxxxxxxx.xxxxxxxxxxxxx';
private $prvKey = 'OPAYPRVxxxxxxxxxxxxx.xxxxxxxxxxxxx';
private $merchantId = '256620xxxxxxxxxxxxx';
}
(new TestTransaction())->test();