whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
braintree
/
braintree_php
/
lib
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/braintree/braintree_php/lib/Braintree.php
<?php // phpcs:disable require_once(__DIR__ . DIRECTORY_SEPARATOR . 'autoload.php'); if (version_compare(PHP_VERSION, '7.3.0', '<')) { throw new Braintree\Exception('PHP version >= 7.3.0 required'); } /** * Braintree PHP Library * Creates class_aliases for old class names replaced by PSR-4 Namespaces */ class Braintree { /** * Checks for required dependencies * * @throws Braintree/Exception With the missing extension * * @return void */ public static function requireDependencies() { $requiredExtensions = ['xmlwriter', 'openssl', 'dom', 'hash', 'curl']; foreach ($requiredExtensions as $ext) { if (!extension_loaded($ext)) { throw new Braintree\Exception('The Braintree library requires the ' . $ext . ' extension.'); } } } } Braintree::requireDependencies();
Copyright ©2021 || Defacer Indonesia