craftt/xorder-sdk

PHP SDK for Container World's xOrder EDI platform.

v1.1.3 2015-07-22 19:34 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:01:29 UTC


README

Build Status Quality Score Coverage Status Latest Version Software License

The xOrder PHP SDK makes it easy to integrate your order and inventory sytsems with ContainerWorld's xOrder EDI service. It leverages the powerful Guzzle library to make http requests.

Usage

Examples of how the xOrder PHP SDK can be used are located in the examples directory.

$xorder = new XOrder\XOrder('xorder.xml', true);
$credentials = new XOrder\Credentials('username', 'password', 'account');

$client = new XOrder\Client;
$client->login($credentials);

$response = $client->send($xorder);

Order Validation

The xOrder PHP SDK can also be used to validate your order xml against the xOrder schema declaration.

$xorder = new XOrder\XOrder('xorder.xml', true);

$validator = new XOrder\XOrderValidator($xorder);

$isValid = $validator->validate();

Testing

The xOrder PHP SDK has a PHPUnit test suite. To run the tests, run the following command from the project folder:

$ phpunit

Contributing

Contributions are welcome and will be fully credited. Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email hello@craftt.com instead of using the issue tracker.

License

Apache 2.0. Please see LICENSE for more information.