[] (https://travis-ci.org/AuthorizeNet/sdk-php)
Proprietary, see the provided license.md
.
- PHP 5.3+ (>=5.3.10 recommended)
- cURL PHP Extension
- JSON PHP Extension
- SimpleXML PHP Extension
- An Authorize.Net Merchant Account or Sandbox Account. You can get a free sandbox account at http://developer.authorize.net/hello_world/sandbox/
We recommend using Composer
(note we never recommend you override the new secure-http default setting), don't forget to require its autoloader in
your script or bootstrap file:
require 'vendor/autoload.php';
Update your composer.json file as per the example below and then run
composer update
.
{
"require": {
"php": ">=5.5",
"ext-curl": "*",
"authorizenet/authorizenet": "1.9.2"
}
}
Alternatively, we provide a custom SPL
autoloader:
require 'path/to/anet_php_sdk/autoload.php';
Issue with PHP 7: You may get below error when run the composer update with PHP 7. To get rid of this error, use composer update --ignore-platform-reqs
Problem 1
- Installation request for authorizenet/authorizenet 1.8.6.2 -> satisfiable
by authorizenet/authorizenet[1.8.6.2].
- authorizenet/authorizenet 1.8.6.2 requires php ~5.3 -> your PHP version (7
.0.3RC1) or value of "config.platform.php" in composer.json does not satisfy that requirement.
To authenticate with the Authorize.Net API you will need to retrieve your API Login ID and Transaction Key from the Merchant Interface
. You can find these details in the Settings section.
If you need a sandbox account you can sign up for one really easily here
.
Once you have your keys simply plug them into the appropriate variables, as per the below code dealing with the authentication part of the flow.
...
use net\authorize\api\contract\v1 as AnetAPI;
...
$merchantAuthentication = new AnetAPI\MerchantAuthenticationType();
$merchantAuthentication->setName("YOURLOGIN");
$merchantAuthentication->setTransactionKey("YOURKEY");
...
$request = new AnetAPI\CreateTransactionRequest();
$request->setMerchantAuthentication($merchantAuthentication);
...
Apart from this README, you can find details and examples of using the SDK in the following places:
Note: The following is a php console application. Ensure that you can invoke the php command from command line.
- Save the below code to a php file named, say,
charge-credit-card.php
- Open command prompt and navigate to your sdk folder ( if want to run from a different folder, modify the
require
statement to have the full path to the sdk e.g.require 'c:/anet-sdk-php/vendor/autoload.php'
in place ofrequire 'vendor/autoload.php'
) - Update dependecies - e.g., With composer, type
composer update
- Type
php [<path to folder containing the php file>\]charge-credit-card.php
require 'vendor/autoload.php';
use net\authorize\api\contract\v1 as AnetAPI;
use net\authorize\api\controller as AnetController;
define("AUTHORIZENET_LOG_FILE", "phplog");
// Common setup for API credentials
$merchantAuthentication = new AnetAPI\MerchantAuthenticationType();
$merchantAuthentication->setName("556KThWQ6vf2");
$merchantAuthentication->setTransactionKey("9ac2932kQ7kN2Wzq");
// Create the payment data for a credit card
$creditCard = new AnetAPI\CreditCardType();
$creditCard->setCardNumber("4111111111111111");
$creditCard->setExpirationDate("2038-12");
$paymentOne = new AnetAPI\PaymentType();
$paymentOne->setCreditCard($creditCard);
// Create a transaction
$transactionRequestType = new AnetAPI\TransactionRequestType();
$transactionRequestType->setTransactionType( "authCaptureTransaction");
$transactionRequestType->setAmount(151.51);
$transactionRequestType->setPayment($paymentOne);
$request = new AnetAPI\CreateTransactionRequest();
$request->setMerchantAuthentication($merchantAuthentication);
$request->setTransactionRequest( $transactionRequestType);
$controller = new AnetController\CreateTransactionController($request);
$response = $controller->executeWithApiResponse( \net\authorize\api\constants\ANetEnvironment::SANDBOX);
if ($response != null)
{
$tresponse = $response->getTransactionResponse();
if (($tresponse != null) && ($tresponse->getResponseCode()=="1") )
{
echo "Charge Credit Card AUTH CODE : " . $tresponse->getAuthCode() . "\n";
echo "Charge Credit Card TRANS ID : " . $tresponse->getTransId() . "\n";
}
else
{
echo "Charge Credit Card ERROR : Invalid response\n";
}
}
else
{
echo "Charge Credit card Null response returned";
}
Replace the environment constant in the execute method. For example, in the method above:
$response = $controller->executeWithApiResponse( \net\authorize\api\constants\ANetEnvironment::PRODUCTION);
SDK generates log with masking for sensitive data like credit card, expiration dates. The provided levels for logging are
debug
, info
, warn
, error
. Add use \net\authorize\util\LogFactory;
. Logger can be initialized using $logger = LogFactory::getLog(get_class($this));
The default log file phplog
gets generated in the current folder. The subsequent logs are appended to the same file, unless the execution folder is changed, and a new log file is generated.
- Logging a string message
$logger->debug("Sending 'XML' Request type");
- Logging xml strings
$logger->debug($xmlRequest);
- Logging using formatting
$logger->debugFormat("Integer: %d, Float: %f, Xml-Request: %s\n", array(100, 1.29f, $xmlRequest));
A local copy of AuthorizedNetSensitiveTagsConfig.json gets generated when code invoking the logger first gets executed. The local file can later be edited by developer to re-configure what is masked and what is visible (Do not edit the json in sdk).
- For each element of the
sensitiveTags
array,tagName
field corresponds to the name of the property in object, or xml-tag that should be hidden entirely ( XXXX shown if no replacement specified ) or masked (e.g. showing the last 4 digits of credit card number).pattern
[Note] andreplacement
[Note] can be left""
, if the default is to be used (as defined in Log.php).pattern
gives the regex to identify, whilereplacement
defines the visible part.disableMask
can be set to true to allow the log to fully display that property in an object, or tag in a xml string.
sensitiveStringRegexes
[Note] has list of credit-card regexes. So if credit-card number is not already masked, it would get entirely masked.- Take care of non-ascii characters (refer manual) while defining the regex, e.g. use
"pattern": "(\\p{N}+)(\\p{N}{4})"
instead of"pattern": "(\\d+)(\\d{4})"
. Also note\\
escape sequence is used.
Note: For any regex, no starting or ending '/' or any other delimiter should be defined. The '/' delimiter and unicode flag is added in the code.
Integration tests for the AuthorizeNet SDK are in the tests
directory. These tests
are mainly for SDK development. However, you can also browse through them to find
more usage examples for the various APIs.
- Run
composer update --dev
to load thePHPUnit
test library. - Copy the
phpunit.xml.dist
file tophpunit.xml
and enter your merchant credentials in the constant fields. - Run
vendor/bin/phpunit
to run the test suite.
You'll probably want to disable emails on your sandbox account.
Card Type | Card Number |
---|---|
American Express Test Card | 370000000000002 |
Discover Test Card | 6011000000000012 |
Visa Test Card | 4007000000027 |
Second Visa Test Card | 4012888818888 |
JCB | 3088000000000017 |
Diners Club/ Carte Blanche | 38000000000006 |
Set the expiration date to anytime in the future.
Add PhpDocumentor to your composer.json and run composer update --dev
:
"require-dev": {
"phpdocumentor/phpdocumentor": "*"
}
To autogenerate PHPDocs run:
vendor/bin/phpdoc -t doc/api/ -d lib