1. Go to this page and download the library: Download quadram/addonpayments-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/ */
quadram / addonpayments-php example snippets
try {
$response = $card->charge(129.99)
->withCurrency("EUR")
->execute();
} catch (BuilderException $e) {
// Errores del constructor
} catch (ConfigurationException $e) {
// Errores referentes a la configuración de los servicios
} catch (GatewayException $e) {
// Errores/excepciones de la pasarela de pagos
} catch (UnsupportedTransactionException $e) {
// Manejar errores cuando la pasarela de pagos no soporta el tipo de transacción
} catch (ApiException $e) {
// Manejar otros errores
}