PHP code example of payever / core-sdk-php
1. Go to this page and download the library: Download payever/core-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/ */
payever / core-sdk-php example snippets
use Payever\Sdk\Core\ClientConfiguration;
use Payever\Sdk\Core\Enum\ChannelSet;
$clientId = 'your-oauth2-client-id';
$clientSecret = 'your-oauth2-client-secret';
$businessUuid = '88888888-4444-4444-4444-121212121212';
$clientConfiguration = new ClientConfiguration();
$clientConfiguration
->setClientId($clientId)
->setClientSecret($clientSecret)
->setBusinessUuid($businessUuid)
->setChannelSet(ChannelSet::CHANNEL_MAGENTO)
->setApiMode(ClientConfiguration::API_MODE_LIVE)
;
use Psr\Log\LogLevel;
use Payever\Sdk\Core\Logger\FileLogger;
$logger = new FileLogger(__DIR__.'/payever.log', LogLevel::INFO);
$clientConfiguration->setLogger($logger);