library orbital-batch
PHP Orbital Batch XML library
kiboflavin/orbital-batch
PHP Orbital Batch XML library
- Tuesday, January 17, 2017
- by kiboflavin
- Repository
- 1 Watchers
- 0 Stars
- 10 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 2 Forks
- 1 Open issues
- 2 Versions
- 0 % Grown
PHP Chase Paymentech Orbital Batch XML library
$cust = array(
'ccAccountNum' => '341134113411347',
'ccExp' => '0120',
'avsAddress1' => '123 Fake Street',
'avsAddress2' => 'Hammock District',
'avsCity' => 'Springfield',
'avsState' => 'MA',
'avsZip' => '01101',
'amount' => '1000'
);
$request = new \OrbitalBatch\Request(
'gh-test',
ORBITAL_USERNAME,
ORBITAL_INDTYPE,
ORBITAL_BIN,
ORBITAL_MERCHANT_ID,
ORBITAL_TERMINAL_ID
);
$request->auth_capture($cust);
$xml = $request->createBatch();
file_put_contents($request->fileID. '.xml', $xml);