����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.17.159.53 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./bofirmacademy.com/vendor/braintree/braintree_php/lib/ |
Upload File : |
<?php /** * Braintree PHP Library * Creates class_aliases for old class names replaced by PSR-4 Namespaces */ require_once(__DIR__ . DIRECTORY_SEPARATOR . 'autoload.php'); if (version_compare(PHP_VERSION, '7.2.0', '<')) { throw new Braintree\Exception('PHP version >= 7.2.0 required'); } class Braintree { 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();