Skip to content

jpcampbell/intacct-sdk-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

113 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intacct SDK for PHP

Build Status

Please note the Intacct SDK for PHP is actively being developed and should not be used in a production environment.

If you would like to get involved please fork the repository and submit a pull request.

Resources

  • Intacct - Intacct's home page
  • Issues - Report issues with the SDK or submit pull requests
  • License - Apache 2.0 license

System Requirements

  • You must have an active Intacct Web Services Developer license
  • PHP >= 5.6
  • A recent version of cURL >= 7.19.4 compiled with OpenSSL and zlib

Installation

Install Composer:

curl -sS https://getcomposer.org/installer | php

Specify the Intacct SDK for PHP as a dependency in your project's composer.json file:

{
    "require": {
        "intacct/intacct-sdk-php": "v0.*"
    }
}

After installing, you need to require Composer's autoloader in your project file(s):

require __DIR__ . '/vendor/autoload.php';

Examples

Create an Intacct Client

<?php

$loader = require __DIR__ . '/vendor/autoload.php';

use Intacct\IntacctClient;

try {
    $client = IntacctClient();
} catch (Exception $ex) {
    echo $ex->getMessage();
}

About

Developer preview, do not use in production environments

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%