[
This repository contains working code samples which demonstrate PHP integration with the Authorize.Net PHP SDK. The samples are organized just like our API, which you can also try out directly here: http://developer.authorize.net/api/reference
##Using the Sample Code
The samples are all completely independent and self-contained so you can look at them to get a gist of how the method works, you can use the snippets to try in your own sample project, or you can run each sample from the command line.
##Running the Samples
Clone this repository.
Run "composer update" in the root directory.
Run the individual samples e.g.
php PaymentTransactions/charge-credit-card.php
Note: If during "composer update", you get the error "composer failed to open stream invalid argument", go to your php.ini file (present where you have installed PHP), and uncomment the following lines:
extension=php_openssl.dll
extension=php_curl.dll
On Windows systems, you also have to uncomment:
extension_dir = "ext"
Then run the composer update again. You might have to restart your machine before the changes take effect.
##What if I'm not using Composer?
We provide a custom SPL autoloader, just download the SDK.:
require 'path/to/anet_php_sdk/autoload.php';