1. Go to this page and download the library: Download open-pix/php-sdk 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/ */
open-pix / php-sdk example snippets
use OpenPix\PhpSdk\Client;
// Load autoload of Composer.
stomer.
$customer = [
"name" => "Dan PHP-SDK",
"taxID" => "00000000000", // CPF
"email" => "[email protected]",
"phone" => "5511999999999",
"correlationID" => "test-php-sdk-customer-" . mt_rand(1, 10000),
];
$client->customers()->create($customer);
// Create a charge using above customer.
$charge = [
// Charge value.
"value" => 1000, // (R$ 10,00)
// Your correlation ID to keep track of this charge.
"correlationID" => "test-php-sdk-charge-" . mt_rand(1, 10000),
// Charge customer.
"customer" => $customer,
];
$result = $client->charges()->create($charge);
// Get the generated dynamic BR code to be rendered as a QR Code.
echo $result["brCode"] . "\n";
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.