aligncommerce / aligncommerce-php-lib
Align Commerce PHP Library
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 10
Forks: 3
pkg:composer/aligncommerce/aligncommerce-php-lib
Requires
- php: >=5.4
- ext-curl: *
- ext-json: *
- ext-mbstring: *
This package is not auto-updated.
Last update: 2025-10-07 07:13:48 UTC
README
Requirements :
PHP 5.4 and later.
Registration :
Register account at https://aligncommerce.com/dashboard/
Installation
Obtain the latest version :
git clone https://github.com/aligncommerce/align-php-library.git
To use the Library, add the following to your PHP Script:
require_once("/path/lib/Align.php");
Configuration :
Configure your credential on lib/Align/Apiconfig.php
authBasicUsername = Username that you used in our registration.
authBasicPassword = Password that you used in our registration.
clientId = Provided in https://aligncommerce.com/dashboard/keys.
secretKey = Provided in https://aligncommerce.com/dashboard/keys.
Basic usage:
require_once("lib/Align.php");
echo Invoice::retrieve();