Created
October 3, 2015 04:00
-
-
Save matthewarkin/8d079aaf28405cdb1f5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace myNamespace; | |
ini_set('display_errors',1); | |
ini_set('display_startup_errors',1); | |
error_reporting(-1); | |
echo "hi"; | |
require_once('vendor/autoload.php'); | |
\Braintree_Configuration::environment('sandbox'); | |
\Braintree_Configuration::merchantId('jpqc7f4drntc3z7g'); | |
\Braintree_Configuration::publicKey('5jhh2342w8mf83pc'); | |
\Braintree_Configuration::privateKey('private key'); | |
$clientToken = \Braintree_ClientToken::generate(); | |
echo $clientToken; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment